何かが2つのフィールドに存在するかどうかを特定のクラスでチェックインするクエリを作成したい(ANDではなくORを意味するものをそれぞれ表示したい)
PFQuery *query = [PFQuery queryWithClassName: self.parseClassName];
[query whereKeyExists:@"name"]; //this is based on whatever query you are trying to accomplish
[query whereKeyExists:@"city"]; //this is based on whatever query you are trying to accomplish
[query whereKey:@"description" containsString:searchTerm];
どうすればいいですか?
** すべてのフィールド (名前、都市、説明) から searchTeam を含むすべての結果をクエリで取得したい
ありがとう