Closed sirioz closed 9 years ago
Query.all() now return a maximum of 100 records (default limit in Parse).
How to specify a custom (higher) limit (e.g.: 1000) ?
Just chain a call to limit in your query, like so: MyModel.Query.all().limit(1000)
limit
MyModel.Query.all().limit(1000)
Query.all() now return a maximum of 100 records (default limit in Parse).
How to specify a custom (higher) limit (e.g.: 1000) ?