react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
📣-announcements
Question about stable data
Infinite loop with Hydration Boundary and Next.js 14 App Router

Force suspense for query
useSuspenseQuries
to load two endpoints which are required to get the supply recommendations and also restore existing selection. Once the component mounts, we use react-hook-form to transform the data into a form state using it's defaultValues
prop.
This works fine on first load, but when a user goes back to make changes on a different page, when they come back to the supply page we need to reload these endpoints so everything is correct. The problem is, when they come back, suspense is not used and data from the cache is used instead. This causes the form to be initialised with the previous data. There are work around for this, such as using isFetching
or resetQuery
(however the latter isn't practical because there are multiple places in the app that can cause changes that affect supply page)....Request blocked status code for useMutation in Tanstack Query for Updating Data
[SOLVED] useMutation does not seem to recognize all of my parameters in my function.
When throwOnError is false how does react-query not throw an error the first time but store in error
Invalidate Query does not display the newly mutated data.
Refetch does not rerender
[SOLVED] Refetch not occurring after router.back (React Native)
isError not updated when NextJS API fails
error
properties do not update.
This is my QueryClient config:
```
const Providers = ({ children }) => {...
How to transpile react-query v5 for old browsers using vite
Long Loading Times With Prefetch
TypeScript Error with useMutation in Tanstack Query for Updating Data
useMutation
in Tanstack Query to update a single row of data in my React application. The goal is to update patient data using a form and handle optimistic updates. However, I'm encountering a TypeScript error that I can't seem to resolve....Gatsby + react-query
Console Error: Query data cannot be undefined & handleLogin hangs at `isLoading`
(localhost in android-emulator uses http://10.0.0.2 as a map to http:127.0.0.1)
I have my functions & states defined as
```tsx
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");...How to avoid useEffect for render twice?
Difference between a query function returning undefined and a query function throwing an error
mutation.mutate is not a function error
TypeError: mutation.mutate is not a function
TypeError: mutation.mutate is not a function
Unique key based on data