Trying to implement a country blacklist, but it's not clear to me how to query for a negative match on an array field using the Parse REST API. The countries being an array key.
blacklistCountries = [ "CN", "KP" ]
Is there something like $not?
where={ blacklistCountries: { $not: "CN" } }