How can i get all data. (findAll error)

Hello, I want to get all my data. find() method get me just 100 data. So I use findAll().
It works when i use that my local using back4app credentials and db.
Bu when i pushed my code on back4app, I got findAll is not a function error. (If i use find method it works.)

Back4app parse-server version is 4.2.0

You can use the each() function for that.

You can set a new limit. Default limit is 100.

query.limit(999999999);

Its very unlikely that you hit 999999999 limit. So It should work.

There is a benefit in using each() as it makes sure everything is returned and also splits the fetches in smaller batches.