I have two classes one is the User class and the other is NewsFeed. I need to join both the classes so that i can get the title present in the NewsFeed and the name present in User class.
I tried this but it fails
ParseQuery<ParseObject> query = ParseQuery.getQuery("Feed");
query.whereEqualTo("AuthorId",ParseUser.getCurrentUser().getObjectId().toString());
ParseQuery<ParseObject> relationQuery = ParseQuery.getQuery("User");
relationQuery.whereMatchesQuery("ObjectId",query);
relationQuery.find();
This always returns null if i remove the relation query i get all the data based on authorid.