You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When mounting a new component that uses useQuery, you can set the remountOnFetch option to false to avoid an unnecessary fetch.
If you instead update the query of an already mounted component, there is (as far as I can tell?) no way to avoid a fetch, even if the new query key already has data in the cache.
So if you force React to recreate the component (via the key prop) you can avoid the refetch, but if you reuse the same component, you cannot. I had hoped there was a way to avoid the refetch without forcing a remount.
Describe the bug
When mounting a new component that uses useQuery, you can set the remountOnFetch option to false to avoid an unnecessary fetch.
If you instead update the query of an already mounted component, there is (as far as I can tell?) no way to avoid a fetch, even if the new query key already has data in the cache.
So if you force React to recreate the component (via the key prop) you can avoid the refetch, but if you reuse the same component, you cannot. I had hoped there was a way to avoid the refetch without forcing a remount.
Your minimal, reproducible example
https://codesandbox.io/s/awesome-breeze-jdvq9o?file=/src/index.jsx
Steps to reproduce
Expected behavior
Since I have refetchOnMount set to false, I expect no refetch after clicking the button a second time. I expect it to use the data from the cache.
How often does this bug happen?
Every time
Screenshots or Videos
No response
Platform
Chrome, Linux
react-query version
4.14.1
TypeScript version
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: