react-query-firebase
react-query-firebase copied to clipboard
React Query hooks for managing asynchronous operations with Firebase. Supports Authentication, Analytics, Firestore & Realtime Database.
**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 ->...
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...
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....
 This happens in nextJs...
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...
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...
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,...
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...