mo7amedtechOriginal post
Rank 2: Process
hello i need to get all users register on my app, but when use api give me 25 only and i can't load more as you see.
how i can get all users ?!!
Summary
To get all users, you can use pagination with the `cursor` parameter in the API request. By default, the API returns 25 users at a time. To get more users, you can increase the limit parameter in the API request. Here's an example:
```
Query.limit(25)
```
You can set the limit to a higher number to get more users. Additionally, you can use the `<https://appwrite.io/docs/pagination|pagination>` documentation for reference on how to implement pagination effectively.