I am using Facebook Parse with JavaScript with a Node/Express backend. I am looking to query my Parse database which contains over 900 objects of a particular class.
I am looking to arbitrarily split those 900 objects evenly 6 times. If it were an array, it would be something like objects[0:150], objects[151:300], etc...
How would I do this using Parse/JavaScript querying?
Thank you