MCPcopy Create free account
hub / github.com/NativeScript/firebase / startAfter

Method startAfter

packages/firebase-firestore/index.android.ts:549–555  ·  view source on GitHub ↗
(fieldValues: DocumentSnapshot<T> | FieldValue[])

Source from the content-addressed store, hash-verified

547 startAfter(snapshot: DocumentSnapshot<T>): Query;
548 startAfter(fieldValues: FieldValue[]): Query;
549 startAfter(fieldValues: DocumentSnapshot<T> | FieldValue[]): Query {
550 if (Array.isArray(fieldValues)) {
551 return Query.fromNative(this.native.startAfter(fieldValues.map((value) => value.native)));
552 } else {
553 return Query.fromNative(this.native.startAfter(fieldValues?.native));
554 }
555 }
556
557 startAt(snapshot: DocumentSnapshot<T>): Query;
558 startAt(fieldValues: FieldValue[]): Query;

Callers

nothing calls this directly

Calls 2

startAfterMethod · 0.65
fromNativeMethod · 0.45

Tested by

no test coverage detected