whereMatchesQuery method
Add a constraint to the query that requires a particular key's value match another ParseQuery.
This only works on keys whose values are ParseObjects or lists of ParseObjects.
Implementation
void whereMatchesQuery(String key, ParseQuery query) {
_addCondition(key, "whereMatchesQuery", query.toJson());
}