I have a Parse.User with a column type of object named availability with two fields, status and timestamp, how would I query Par
Parse.User
status
timestamp
Par
Try using the dot notation for multi-level queries:
query.equalTo('availability.status', 'busy');