I use parsing to store my objects. When I go to search for objects, I get the objects in random order, as it looks. I Believe Parse does not count seconds, just a few minutes, and if the objects are made in one minute, this returns me the objects in random order.
PFQuery *query = [PFQuery queryWithClassName:@"ChatMessage"]; [query whereKey:@"alert" equalTo:myAlert];
I "filter" the objects that I get with the key.
I get objects, but they are all out of order. I can attach milliseconds to this object when it is created (date typeSince1970), but I do not want to do this. Is there a built-in way to do this in Parse?
source share