I am using Parse for ios. When I query the user table with the code below, it returns nothing. There are a few users in the table and it should return all of them.
PFQuery *query = [PFQuery queryWithClassName:@"User"];
NSArray *users = [query findObjects];