Rank 1: Thread
i am using flutter sdk (appwrite: ^8.2.2) and cloud appwrite.
When i am try to query getting an error -: Index not found: user_id
user_id is the attribute in my db.
My code is below
await databases.listDocuments(
databaseId: AppWriteConstants.databaseId,
collectionId: AppWriteConstants.colProjectUserRole,
queries: [
Query.equal('user_id', prefs.getString(PreferenceType.userId) ?? ''),
],
)