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
- Got message for auto payment of 15usd fo...
how did this happen? 1. i claimed my 50usd credits via jsm hackathon - https://hackathon.jsmastery.pro/ 2. it asked me which org. to apply the credits on, i se...
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...