
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
- How to reduce DB Reads?
I just noticed that I hit the 500k db reads limit on my very small next js app with the most data being present in one collection having around 50 documents. ...
- Getting issue while migrating from Self ...
i try to migrating my project but when do this error come and dont allow to crate that migration
- Fail to receive the verification email a...
I added my email address to prevent it from showing "appwrite," but now I'm not receiving emails for verification or password resets. The function appears to be...
