I am using parse to store my objects. When I go to retrieve objects, I get the objects in a random order it looks like. I Believe Parse isn't taking seconds into account, just minutes, and if the objects are made in the same minute it gives me the objects back in a random order.
PFQuery *query = [PFQuery queryWithClassName:@"ChatMessage"];
[query whereKey:@"alert" equalTo:myAlert];
I'm "filtering" the objects I get with a key.
I get the objects, they are all out of order though. I can attach milliseconds to this object when it is created (dateSince1970 type thing), but I don't want to have to do that. Is there a built in way to do this in Parse?