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
- is `account.get()` safe to be used in th...
I want to user's `id` for authentication. However, a while ago I was told in this server not to use `account.get()` and instead add user preferences for that us...
- Appwrite console is too heavy
The Appwrite console is too heavy And all of my services broken Any support , please
- Usage of the new Client() and dealing wi...
Hey guys, just a quick one - we had some web traffic the other day and it ended up bombing out - To put in perspective of how the app works, we have a Nuxt Ap...