Hi all
What is the difference between?
Thank you
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.