Merge pull request #1185 from ParsePlatform/flovilmart.arrayPointersInQuery

fixes problem affecting finding array pointers
This commit is contained in:
Florent Vilmart
2016-03-25 08:24:23 -04:00
2 changed files with 40 additions and 1 deletions

View File

@@ -452,7 +452,7 @@ function transformConstraint(constraint, inArray) {
'bad ' + key + ' value');
}
answer[key] = arr.map((v) => {
return transformAtom(v, true);
return transformAtom(v, true, { inArray: inArray });
});
break;