docs-devsite/firestore_lite.queryendatconstraint.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 QueryEndAtConstraint is used to exclude documents from the end of a result set returned by a Firestore query. QueryEndAtConstraint<!-- -->s 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<!-- -->.
<b>Signature:</b>
export declare class QueryEndAtConstraint extends QueryConstraint
<b>Extends:</b> QueryConstraint
| Property | Modifiers | Type | Description |
|---|---|---|---|
| type | 'endBefore' | 'endAt' | The type of this query constraint |
The type of this query constraint
<b>Signature:</b>
readonly type: 'endBefore' | 'endAt';