react-query-firebase icon indicating copy to clipboard operation
react-query-firebase copied to clipboard

React Query hooks for managing asynchronous operations with Firebase. Supports Authentication, Analytics, Firestore & Realtime Database.

Results 85 react-query-firebase issues
Sort by recently updated
recently updated
newest added

**Problem:** react-query-firebase always show the error `Error: No QueryClient set, use QueryClientProvider to set one`. My provider is given like in the newest docs. **What I've tried** - Setting ->...

react-query-firebase

It seems that react-query-firebase does not work with TanStack Query (formerly react-query) 4.

This PR fixes some type errors in the firestore hooks, and bumps up the versions of packages to the dev releases

I have a query that lists all documents in a collection that I subscribe on and if I sign out I keep getting a snapshot listener error because I have...

react-query-firebase

I've discovered a weird behaviour of useFirestoreDocument/useFirestoreQuery hooks: `{ subscribe: true }` option will have no effect, if query is remounted (in default `cacheTime` 5 mins window), after became inactive....

bug
react-query-firebase

![Screenshot from 2022-07-15 00-11-10](https://user-images.githubusercontent.com/99676004/179118240-78de57eb-eadf-4db0-8f2e-32cbc96c4599.png) This happens in nextJs...

react-query-firebase

I'm trying to optimistically update a document in firestore, but on calling the **invalidateQueries** function once **useMutation** is settled I'm getting the old document data, though the document has been...

react-query-firebase

Hi, seems like it's not possible to install any of the packages on a project using React 18+ ``` $ npm update npm ERR! code ERESOLVE npm ERR! ERESOLVE unable...

react-query-firebase

Looks like the code inside getPreviousPageParam is not even being executed. Example: ``` javascript const ordersQuery = query( collection(firestore, "orders") as CollectionReference, orderBy("createdAt"), limit(1) ); const { data, hasPreviousPage, hasNextPage,...

react-query-firebase

I was wondering how you are dealing with a segment of the path being undefined on the first render when one refreshes the page or opens a copy pasted deep...

react-query-firebase