QueryEndAtConstraint class

QueryEndAtConstraint 用于从 Firestore 查询返回的结果集的末尾排除文档。QueryEndAtConstraint 通过调用 endAt()endBefore() 来创建,然后可以传递给 query() 来创建包含此 QueryEndAtConstraint 的新查询实例。

签名

export declare class QueryEndAtConstraint extends QueryConstraint 

扩展QueryConstraint

属性

属性 修饰符 类型 说明
type “endBefore”|“endAt” 此查询限制条件的类型

QueryEndAtConstraint.type

此查询限制条件的类型

签名

readonly type: 'endBefore' | 'endAt';