
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
TL;DR
The user wants to know how to retrieve all users in the auth using .NET. They have tried using pagination but are only getting 25 users out of a total of 100. They are seeking a solution to return all 100 users.
You'll need to paginate: https://appwrite.io/docs/pagination

TypeScript
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
- Selfhosting problem
I'm migrating from cloud to self-hosted. I tried using 'Export to self-hosted instance' and use my free Ngrok domain as Endpoint self-hosted instance, but I got...
- Getting issue while migrating from Self ...
i try to migrating my project but when do this error come and dont allow to crate that migration
- Direct Upgrade from Appwrite v1.5.11 to ...
I'm on Appwrite v1.5.11. Can I upgrade directly to v1.6.2?
