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

后端 未结 3 1189
日久生厌
日久生厌 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:24

    @Akshat Agarwal, here is a example in JavaScript:

    var parseObj = Parse.Object.extend('parseObj');
    
    new Parse.Query(parseObj)
      .include('pointerField')
      .find(function (data) {
        data.get('pointerField').get('fieldName');
      });
    

提交回复
热议问题