docs-devsite/database.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 Database query. QueryConstraint<!-- -->s are created by invoking endAt()<!-- -->, endBefore()<!-- -->, startAt()<!-- -->, startAfter()<!-- -->, limitToFirst()<!-- -->, limitToLast()<!-- -->, orderByChild()<!-- -->, orderByChild()<!-- -->, orderByKey() , orderByPriority() , orderByValue() or equalTo() 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 constraints |
The type of this query constraints
<b>Signature:</b>
abstract readonly type: QueryConstraintType;