Global

Methods

_andQuery(queries) → {Parse.Query}

Adds constraint that all of the passed in queries match.

Parameters:
Name Type Description
queries Array
Returns:
Type:
Parse.Query

Returns the query, so you can chain this call.

_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.

Returns:
Type:
Parse.Query

The query that is the AND of the passed in queries.