milesrichardson / ParsePy

A relatively up-to-date fork of ParsePy, the Python wrapper for the Parse.com API. Originally maintained by @dgrtwo
MIT License
516 stars 184 forks source link

Query.all() limit #116

Closed sirioz closed 9 years ago

sirioz commented 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) ?

dankrause commented 9 years ago

Just chain a call to limit in your query, like so: MyModel.Query.all().limit(1000)