How to use the rxfire/firestore.docData function in rxfire

To help you get started, we’ve selected a few rxfire examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github FirebaseExtended / reactfire / reactfire / firestore / index.tsx View on Github external
export function useFirestoreDocData(
  ref: firestore.DocumentReference,
  options?: ReactFireOptions
): T {
  return useObservable(
    docData(ref, checkIdField(options)),
    'firestore docdata: ' + ref.path,
    checkStartWithValue(options)
  );
}