A QueryStartAtConstraint
is used to exclude documents from the start of a result set returned by a Firestore query. QueryStartAtConstraint
s 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:
export declare class QueryStartAtConstraint extends QueryConstraint
Extends: QueryConstraint
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
type | 'startAt' | 'startAfter' | The type of this query constraint |
QueryStartAtConstraint.type
The type of this query constraint
Signature:
readonly type: 'startAt' | 'startAfter';