@everyone
How can I get all documents? (I tried the functions but it also has a limit.)
Is there a way to find min max values like in SQL?
Votes
0
Replies
9
Participants
Unknown
Messages
10
@everyone
How can I get all documents? (I tried the functions but it also has a limit.)
Is there a way to find min max values like in SQL?
https://appwrite.io/docs/client/databases?sdk=web-default#databasesListDocuments
to check about queries: https://appwrite.io/docs/databases#querying-documents
@everyone
i need all documents in collection, 10K docs, 100K docs. etc.
@everyone
I need all documents with no limits.
We are working on it - as of right now to increase the limit from 100, You wound need to make a recursive loop and use cursor pagination to get all the docs. Example: https://github.com/Meldiron/almost-gist/blob/main/backend/functions/onGistChange/src/index.js#L116-L143
@everyone
I used this but it takes too long.
I hear you - we are working on making it better and improving the limit of documents
@everyone
Thanks for be interested.
[CLOSED] I need all documents in a collection.