
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
- Import Css glitsch?
Hey, Seems to be not only my computer, but some other i know - Seems that there's a css error When migrating, the input checkbox, and selectbox are.. out of st...
- CLI Error using appwrite init site
Hello 👋 , we got error using CLI `appwrite init site` for any project on latest `Windows 11`, the error is ```bash Error: Command failed: cmd /c "mkdir -p . ...
- Migration Error
Hi, so I triggered a migration from appwrite cloud to appwrite self hosted instance, I used the inbuilt migration tool and it failed to migrate things like clo...
