
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
- grant permisions only to users in collec...
I'm building a web app and instead of using Appwrite Auth, I made my own custom auth system that stores user data in documents. I have a "Profile" page where lo...
- 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?
