2

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) {

}

1 Answer 1

2

Check your objects's ACLs. Are they only readable by a subset of users? Are they globally readable?

Sign up to request clarification or add additional context in comments.

1 Comment

Thanks! I completely forgot to check that!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.