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