I'm trying to get the following query:
https://api.parse.com/1/classes/Video?where=
{"course":{"__type":"Pointer","className":"Course","objectId":{"$in":["id1","id2"]}}}
I'm querying on Video table, on "course" field (It's a pointer) to get all videos that its course is one of ids passed in the array (For this reason I use $in) because if I don't use $in, I don't have problems but I don't need it.
The error is this:
{
code: 106,
error: "key objectId should be a string"
}
What I have to do? Do you have any idea??
Thanks