LazarooOriginal post
Flutter Developer
I'm using flutter and I've just got everything set up, the document meta data is null but the actual query is fine. (see screenshot)
The permission I have are Guest - Read, User - Read, Write, Update
Query:
return databases.listDocuments( databaseId: _db, collectionId: _incidentsCollection, queries: [ Query.select(['name']), Query.equal('active', true) ], );
I'm not sure where I'm going wrong - this seems like such a simple thing.
Thanks!
Summary
Issue with Flutter set up - document meta data is null but query is fine. Permissions are set. Query code provided. Difficulty troubleshooting.
Solution: Check if the document data is properly fetched. Verify database connection and permissions set correctly. Double-check query logic to ensure it retrieves the expected data.