DennisLBC
Not sure if I am missing something dumb here but I want to grab every single document in a collection that has 200 documents but no matter what I do I only ever get 25.
TypeScript
databaseId: AppWriteConstants.databaseId,
collectionId: AppWriteConstants.collectionId,
);```
I am trying to test something and if it works I won't actually need to be doing this cause instead of doing this each time on the client I will just create a summary file that has the details I need and set that from a server function. But I never realized there was this limitation?
TL;DR
Issue: Developer is only able to retrieve 25 documents from a collection using listDocuments despite expecting 200.
Solution: This limitation is due to the default limit set by the function. To retrieve all documents, developers can specify the 'limit' parameter with a higher value to fetch all desired documents from the collection. Recommended threads
- 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...
- [SOLVED] OAuth With Google & Flutter
Hi all, I'm trying to sign in with google and it all goes swimmingly until the call back. I get a new user created on the appwrite dashboard however the flutte...