What difference between find and findAll (Parse.Query)

Hi all :wave:

What is the difference between?

Thank you :slight_smile:

find will fetch the objects but the results will be limited to the default Parse Server limit (if any) and the objects will be retrieved all at once (which can result on a timeout if you have a big result set). findAll will retrieve all objects regardless of parse server default limit and it will do it in small batches to avoid any timeout.

1 Like