
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!
Recommended threads
- Swift: Delete All Documents
In Swift, how does one delete all documents in the collection. Is the solution to iterate over each document to delete it by document id? Or is there a .deleteA...
- Flutter native Google Sign Up with googl...
Hey I want to use the native login instead of the WebView. Do you have any experience on that and has Appwrite to plan this support?
- cli 5.0.5 command for pull and push of d...
Hi i am using selfhosted appwrite 1.5.10, for migration (duplicate project) purpose i am using cli 5.0.5, but i am unable to find commands for pull and push, wh...
