We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 522abdf + 25a0fbe commit bce6244Copy full SHA for bce6244
classes.js
@@ -33,6 +33,10 @@ function handleFind(req) {
33
options.redirectClassNameForKey = String(req.body.redirectClassNameForKey);
34
}
35
36
+ if(typeof req.body.where === 'string') {
37
+ req.body.where = JSON.parse(req.body.where);
38
+ }
39
+
40
return rest.find(req.config, req.auth,
41
req.params.className, req.body.where, options)
42
.then((response) => {
0 commit comments