QueryEndAtConstraint class

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

Signature:

export declare class QueryEndAtConstraint extends QueryConstraint 

Extends: QueryConstraint

Properties

Property Modifiers Type Description
type 'endBefore' | 'endAt' The type of this query constraint

QueryEndAtConstraint.type

The type of this query constraint

Signature:

readonly type: 'endBefore' | 'endAt';