I am currently trying to make requests with Parse but I would like to start from "a random point" in database.
Since my app sorts automatically feed results in a "fixed way", users will always get the same results in their feed but I would like to make it more random. So, every time the user reloads his feed, he would get different results since there is a large number of users.
I feel like the first requests are the ones at the bottom of the database table (in Parse).
So,aren't there any way to give it a "starting point" in database?
Here's the code:
let query = PFQuery(className: "_User")
//query.startingIndex = 4 for e.g ??
query.findObjectsInBackground { (objects, error) in
}
I would be glad to know someone can help me out