I have a dictionary in the database and I would like my query to have constraints in regards to that dictionary :
I tried query.whereEqualTo("skills",dictionary);
Any idea if this is achievable in parse server and if yes any clarifications?
Asked
Active
Viewed 45 times
0

Tom Fox
- 897
- 3
- 14
- 34

Joseph Hajjar
- 138
- 2
- 12
-
1If the data is stored as an object at the server, you can use `query.whereEqualTo("skills.dictionary_key",value)` If every key needs to match, maybe iterate over them? – William George Mar 18 '19 at 20:44
-
Exactly what I needed, thank you ! – Joseph Hajjar Mar 18 '19 at 20:54