How to query an 'Object' type field in parse.

前端 未结 1 856
情书的邮戳
情书的邮戳 2020-12-19 17:36

I have a Parse.User with a column type of object named availability with two fields, status and timestamp, how would I query Par

相关标签:
1条回答
  • 2020-12-19 18:26

    Try using the dot notation for multi-level queries:

    query.equalTo('availability.status', 'busy');
    
    0 讨论(0)
提交回复
热议问题