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

Method endAt

packages/firebase-database/index.ios.ts:212–218  ·  view source on GitHub ↗
(value: string | number | boolean, key?: string)

Source from the content-addressed store, hash-verified

210 }
211
212 endAt(value: string | number | boolean, key?: string): Query {
213 if (key) {
214 return Query.fromNative(this.native.queryEndingAtValueChildKey(value, key));
215 } else {
216 return Query.fromNative(this.native.queryEndingAtValue(value));
217 }
218 }
219
220 equalTo(value: string | number | boolean, key?: string): Query {
221 if (key) {

Callers

nothing calls this directly

Calls 1

fromNativeMethod · 0.45

Tested by

no test coverage detected