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

QueryConstraint

abstract

A QueryConstraint is used to narrow the set of documents returned by a Firestore query. QueryConstraints are created by invoking where, orderBy, {@link (startAt:1)}, {@link (startAfter:1)}, {@link (endBefore:1)}, {@link (endAt:1)}, limit, limitToLast and can then be passed to {@link (query:1)} to create a new query instance that also contains this QueryConstraint.

abstract class QueryConstraint {
abstract readonly type: QueryConstraintType;
}

§Properties

§

The type of this query constraint