UserList result = await _appwriteManager.Users.List();
I can see the total 100 user in result. but only 25 users are returned. how can I specify to return all 100 users
You'll need to paginate: https://appwrite.io/docs/pagination
queries.Add(Query.Limit(delUserArr.Length));
result = await _appwriteManager.Users.List(
queries: queries
);
idUsers = result.Users.Select(x => x.Id).ToList();```
still yet 25 records
You paginate with either a cursor or offset
Btw, it's best to use 3 back ticks with multi-line code. See https://www.markdownguide.org/extended-syntax/#syntax-highlighting
Thanks
Recommended threads
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...
- Migrate from cloud to localhost
Hello everyone. I need to migrate my test project from cloud to localhost, however it seems that this is possible only if a self-hosted appwrite instance it's h...