docs-devsite/firestore_.queryconstraint.md
Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
A QueryConstraint is used to narrow the set of documents returned by a Firestore query. QueryConstraint<!-- -->s are created by invoking where()<!-- -->, orderBy()<!-- -->, startAt()<!-- -->, startAfter()<!-- -->, endBefore()<!-- -->, endAt()<!-- -->, limit()<!-- -->, limitToLast() and can then be passed to query() to create a new query instance that also contains this QueryConstraint<!-- -->.
<b>Signature:</b>
export declare abstract class QueryConstraint
| Property | Modifiers | Type | Description |
|---|---|---|---|
| type | QueryConstraintType | The type of this query constraint |
The type of this query constraint
<b>Signature:</b>
abstract readonly type: QueryConstraintType;