Rank 2: Process
i want to fetch user followers from database and i double checked everything but still not able to get the list. here's my user_api code . there could be a mistake in query i guess -
Future<List<model.Document>> getFollowers(String uid) async { final documents = await _db.listDocuments( databaseId: AppConstants.APPWRITE_DATABASE_ID, collectionId: AppConstants.APPWRITE_USERS_COLLECIION, queries: [ Query.equal('followers', uid) ] ); return documents.documents; }```