there is a method for PFQuery
PFQuery *query = [PFQuery queryWithClassName:@"class"];
[query whereKey:(NSString *)key containsAllObjectsInArray:(NSArray *)array];
is there similar method to define if there is NO specified object in array? like
[query whereKey:(NSString *)key doesNotContainAllObjectsInArray:(NSArray *)array];
If no, how to code this method by myself?