We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried to use 'and' query by following the guidance http://docs.parseplatform.org/js/guide/#and-ed-query-constraints var mainQuery = Parse.Query.and( Parse.Query.or(age16Query, age18Query), Parse.Query.or(friends0Query, friends2Query) );
var mainQuery = Parse.Query.and( Parse.Query.or(age16Query, age18Query), Parse.Query.or(friends0Query, friends2Query) );
but it throws the error vue.runtime.esm.js?23ec:1695 TypeError: __WEBPACK_IMPORTED_MODULE_1_parse___default.a.Query.and is not a function
vue.runtime.esm.js?23ec:1695 TypeError: __WEBPACK_IMPORTED_MODULE_1_parse___default.a.Query.and is not a function
and I did not find 'and' method in http://parseplatform.org/Parse-SDK-JS/api/v1.11.0/ either.
The text was updated successfully, but these errors were encountered:
@gaoljie There is an open PR. #367
It should be merged soon
Sorry, something went wrong.
Thanks! @dplewis
Parse.Query.and was add in 1.11.1. Please update to the latest version of Parse-Server.
1.11.1
No branches or pull requests
I tried to use 'and' query by following the guidance http://docs.parseplatform.org/js/guide/#and-ed-query-constraints
var mainQuery = Parse.Query.and( Parse.Query.or(age16Query, age18Query), Parse.Query.or(friends0Query, friends2Query) );
but it throws the error
vue.runtime.esm.js?23ec:1695 TypeError: __WEBPACK_IMPORTED_MODULE_1_parse___default.a.Query.and is not a function
and I did not find 'and' method in http://parseplatform.org/Parse-SDK-JS/api/v1.11.0/ either.
The text was updated successfully, but these errors were encountered: