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!
Summary
Developers had a major issue with the 25 records limit, but it was resolved by setting a limit on a third query. The issue stemmed from not specifying a limit on a query, affecting the available IDs in an array. By setting the limit appropriately, the problem was fixed.
Kenny
Apr 24, 2024, 13:31
What does your code look like because query limit 100 should work to extend the limit with a max of 5000 I believe.
where res.availablereferees is an array of another collection in the same function
Kenny
Apr 24, 2024, 13:42
Just curious, if you remove that query equal does the limit work then?
Tassos P.
Rank 2: Process
Apr 24, 2024, 13:48
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!