
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
- how many Teams can be created?
I am creating an app where I will let users create groups. This could mean there will be many groups created by user, to isolate those groups properly I am thin...
- Cannot create a user
Hi, I am using a lowcoder frontend and trying to create a user in Appwrite (python function). Unfortunately, all I got is an error: "Raw body: Error". It means...
- Invalid credentials after migration
Hi everyone! After migrating our self-hosted Appwrite 1.3.1 to another server (staging, so a different domain), we are now getting 'Invalid credentials' when ...
