QueryStartAtConstraint class

A QueryStartAtConstraint is used to exclude documents from the start of a result set returned by a Firestore query. QueryStartAtConstraints are created by invoking startAt() or startAfter() and can then be passed to query() to create a new query instance that also contains this QueryStartAtConstraint.

Signature:

exportdeclareclassQueryStartAtConstraintextendsQueryConstraint

Extends:QueryConstraint

Properties

PropertyModifiersTypeDescription
type'startAt' | 'startAfter'The type of this query constraint

QueryStartAtConstraint.type

The type of this query constraint

Signature:

readonlytype:'startAt'|'startAfter';