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
- API key without database.read/write
I had some issues with my previous API key and I deleted it then I wanted to create a new one and discovered the database checkbook has no database.read/write j...
- dynamic key missing scopes for database ...
Here are the scopes listed, I get permission errors for reading row and document. Appears to be missing since last time i checked. Database 6 Scopes policies....
- Upgrading selfhost version?
It is okay to upgrade version to higher one, of my current version is 1.7.4 to 1.8.1. Is that safe to do cause my clients already have data on that? Also is a...