QueryConstraint class

QueryConstraint 用于缩小 Firestore 查询返回的文档集的范围。QueryConstraint 是通过调用 where()orderBy()startAt()startAfter()endBefore()endAt()limit()limitToLast() 等方法创建的,然后可以再将此查询传递给 QueryConstraint

签名

export declare abstract class QueryConstraint 

属性

属性 修饰符 类型 说明
type QueryConstraintType 此查询限制条件的类型

QueryConstraint.type

此查询限制条件的类型

签名

abstract readonly type: QueryConstraintType;