I m working on parse. There are 2 table:
1. ScoreNode: User, score.
2. User: id, name, image(ParseFile)
Now need a query to fetch all the these info in one go.
ParseQuery<ScoreNode> query = new ParseQuery<ScoreNode>();
query.include("user");
How i can include image file?
query.include("user.image");
And query should be on scorenode.