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

Method fromNative

packages/firebase-firestore/index.android.ts:442–449  ·  view source on GitHub ↗
(query: com.google.firebase.firestore.Query)

Source from the content-addressed store, hash-verified

440 _native: com.google.firebase.firestore.Query;
441
442 static fromNative(query: com.google.firebase.firestore.Query): Query {
443 if (query instanceof com.google.firebase.firestore.Query) {
444 const nativeQuery = new Query();
445 nativeQuery._native = query;
446 return nativeQuery;
447 }
448 return null;
449 }
450
451 endAt(snapshot: DocumentSnapshot<T>): Query;
452 endAt(fieldValues: FieldValue[]): Query;

Callers 15

deserializeFieldFunction · 0.45
deleteMethod · 0.45
getMethod · 0.45
updateMethod · 0.45
setMethod · 0.45
metadataMethod · 0.45
refMethod · 0.45
docMethod · 0.45
endAtMethod · 0.45
endBeforeMethod · 0.45
onErrorMethod · 0.45
onSuccessMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected