hello i need to get all users register on my app, but when use api give me 25 only and i can't load more as you see.
how i can get all users ?!!
??
@Moderator
Yes, by default you get 25 documents
You can use Query.limit(25)
And set the 25 to a higher number to get more elements
Use cursor
, if you have a lot of documents in a loop.
That's it. You should not get everything at once
I need to loop to all users email to send emails.
Yes, that would be the right way.
Recommended threads
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- Current User is Not authorized
recreating same Thread
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...