Methods
_andQuery(queries) → {Parse.Query}
Adds constraint that all of the passed in queries match.
Parameters:
Name | Type | Description |
---|---|---|
queries |
Array
|
_getClassNameFromQueries()
Extracts the class name from queries. If not all queries have the same class name an error will be thrown.
(static) and(…var_args) → {Parse.Query}
Constructs a Parse.Query that is the AND of the passed in queries. For example:
var compoundQuery = Parse.Query.and(query1, query2, query3);
will create a compoundQuery that is an and of the query1, query2, and query3.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
var_args |
Parse.Query
|
<repeatable> |
The list of queries to AND. |