How to query value of column that is set as pointer to other table in Parse

后端 未结 3 1188
日久生厌
日久生厌 2021-02-06 01:52

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(\"         


        
3条回答
  •  渐次进展
    2021-02-06 02:46

    For iOS

      PFQuery *parseQuery = [PFQuery queryWithClassName:@"MyClass"];
      [parseQuery whereKey:@"categoryId" equalTo:categoryId];
      [parseQuery includeKey:@"pinter_field"];
      [parseQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
      //
      }];
    

提交回复
热议问题