I am building an app and several collections used to populate drop down selects. These select inputs have more than 35 records each. Is there a solution to overpass the limit? because so far with Query.limit(100) i.ex. it returns maximum 25!
What does your code look like because query limit 100 should work to extend the limit with a max of 5000 I believe.
Look here @Kenny
const refs = await db.listDocuments(ODKE_DB, COL_REFS,[ Query.equal('user_id', res.availablereferees), Query.limit(100) ])
where res.availablereferees is an array of another collection in the same function
Just curious, if you remove that query equal does the limit work then?
yes but ok, it was my mistake because I had not set a limit on a third Query so it was limiting the available ids into the other array! Sorry for this!!! thank you @Kenny for the instant interest and guidance!
[SOLVED] Major Problem with 25 records limit
Glad you got it resolved! :)
Recommended threads
- Exception: Route not found when calling ...
I have self-hosted v1.8.1 and I am using an Appwrite function with node-appwrite v22. When I call the createVarcharColumn() in my server function I get this exc...
- Document created without ID in console
Hi team, I’m experiencing an issue in the Appwrite console. When I create a document in a collection via the **Collections UI**, the document gets created **wi...
- Realtime doesn't seem to work with Table...
Hi, I am trying to connect my tables rows with realtime on my react website, it connects, but I dont get the rows when a row is being created. I tried with Chan...