WisemanOriginal post
Rank 2: Process
I/flutter (27654): Error fetching user by phone: AppwriteException: general_query_invalid, Invalid query: Attribute not found in schema: phone (400)
Plain text
databaseId: 'your_database_id', collectionId: 'your_collection_id', queries: [ Query.equal('phone', user.phone), ], );```Summary
Schema error when querying user by phone. Method to query the correct schema: Make sure the 'phone' attribute exists in the schema, or adjust the query accordingly.