I'm trying to make a ParseQuery to retrieve items from parse.com. At the moment, it always returns null when the app first tries this query, even though I know there are 3 objects there. Can anyone tell me why or help me fix this problem?
ParseQuery<ParseObject> query = new ParseQuery<ParseObject>("DreamCloud");
query.orderByDescending("_created_at");
try {
dreams = query.find();
} catch (ParseException e) {
}