I am using Parse for my app. I want to query a table with column that set to be a pointer to other table. Here is the query:
ParseQuery query = new ParseQuery(\"
For iOS
PFQuery *parseQuery = [PFQuery queryWithClassName:@"MyClass"]; [parseQuery whereKey:@"categoryId" equalTo:categoryId]; [parseQuery includeKey:@"pinter_field"]; [parseQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) { // }];