I have a class that has a object type column, e.g.
COLUMN 1
Row 1 : {"gender":"male","name":"A"}
Row 2 : {"gender":"female","name":"B"}
Row 3 : {"gender":"male","name":"C"}
I need to get the rows whose objects for key name
, in COLUMN1, matches the contents of my array ["A","B"]
So in may case, query should return ROW 1 and ROW 2.
I know this method but its for comparing array with a string
column in Parse, as far as I know:
[query whereKey:@"name" containsAllObjectsInArray:selectedParticipants];
How to compare my array with a dictionary column?