MCPcopy Index your code
hub / github.com/NativeScript/firebase / endAt

Method endAt

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

Source from the content-addressed store, hash-verified

451 endAt(snapshot: DocumentSnapshot<T>): Query;
452 endAt(fieldValues: FieldValue[]): Query;
453 endAt(fieldValues: DocumentSnapshot<T> | FieldValue[]): Query {
454 if (Array.isArray(fieldValues)) {
455 return Query.fromNative(this.native.endAt(fieldValues.map((value) => value?.native || value)));
456 } else {
457 return Query.fromNative(this.native.endAt(fieldValues?.native));
458 }
459 }
460
461 endBefore(snapshot: DocumentSnapshot<T>): Query;
462 endBefore(fieldValues: FieldValue[]): Query;

Callers

nothing calls this directly

Calls 2

endAtMethod · 0.65
fromNativeMethod · 0.45

Tested by

no test coverage detected