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
- after using the coding agents its code b...
can anybody suggest me an ai tool that i can use to create the system desgins without the suggestion things because it at last create a mess
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...
- User Filter/Sorting/Analytics
Currently the dashboard for users is very limited. I would like to have an option to sort by column and also to filter by column, to for example find users that...