Hi,
How can I remove the limit from a database query?
Query.limit(1000);
What I need is to bring me all the records that the user has.
TL;DR
To remove the registration limit in Appwrite, you can use pagination. Instead of adding a limit to the query, you can implement cursor pagination to retrieve all the records that the user has. This allows you to fetch data in smaller chunks and continue fetching until you have retrieved all the desired records.