Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

QueryCompositeFilterConstraint

A QueryCompositeFilterConstraint is used to narrow the set of documents returned by a Firestore query by performing the logical OR or AND of multiple QueryFieldFilterConstraints or QueryCompositeFilterConstraints. QueryCompositeFilterConstraints are created by invoking or or and and can then be passed to {@link (query:1)} to create a new query instance that also contains the QueryCompositeFilterConstraint.

class QueryCompositeFilterConstraint {
readonly type: "or" | "and";
}

§Properties

§
type: "or" | "and"
[src]

The type of this query constraint