Back to Firebase Js Sdk

QueryStartAtConstraint class

docs-devsite/firestore_.querystartatconstraint.md

12.12.11.3 KB
Original Source

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 %}

QueryStartAtConstraint class

A QueryStartAtConstraint is used to exclude documents from the start of a result set returned by a Firestore query. QueryStartAtConstraint<!-- -->s are created by invoking startAt() or startAfter() and can then be passed to query() to create a new query instance that also contains this QueryStartAtConstraint<!-- -->.

<b>Signature:</b>

typescript
export declare class QueryStartAtConstraint extends QueryConstraint 

<b>Extends:</b> QueryConstraint

Properties

PropertyModifiersTypeDescription
type'startAt' | 'startAfter'The type of this query constraint

QueryStartAtConstraint.type

The type of this query constraint

<b>Signature:</b>

typescript
readonly type: 'startAt' | 'startAfter';