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

QueryEndAtConstraint

A QueryEndAtConstraint is used to exclude documents from the end of a result set returned by a Firestore query. QueryEndAtConstraints are created by invoking {@link (endAt:1)} or {@link (endBefore:1)} and can then be passed to {@link (query:1)} to create a new query instance that also contains this QueryEndAtConstraint.

class QueryEndAtConstraint extends QueryConstraint {
readonly type: "endBefore" | "endAt";
}

§Extends

§
QueryConstraint
[src]

§Properties

§
type: "endBefore" | "endAt"
[src]

The type of this query constraint