Is there a limit to how many queries I can have in one request.
Assume a user has 100 people blocked, I want to fetch a list of documents that excludes blocked users
How should I make this request?
There’s a limit of 100 Queries per request
Thanks. I’m wondering if this is the correct way to fetch a list of documents that excludes documents made by blocked users
// An array with 200 user ids
List<String> blockList = ["User1", "User2", ... "User200"];
var yourDocuments = await _database.listDocuments(
databaseId: '...',
collectionId: '...',
queries: [
Query.notEqual("userid", blockList)
]);
That looks right to me
Recommended threads
- Appwrite project paused
I have github student account. The auth has been paused however the database is working fine. I cant see any option to resume from my console panel. It is just ...
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Missing Invoice
Hi! I need help with billing on my account (marelu@gmail.com). I have never received a single invoice by email. My organization has been on the Pro plan since...