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
why is QueryClientProvider required?
QueryClientProvider in it's root... and we have lots of apps...
is there any technical reason why react-query NEEDS a provider? I get that you're passing client around with context... but couldn't that be done with an instanced object?...Zodios query invalidations

useMutation Testing
Best Approach for Form
Can you cancel requests from the AWS-SDK?
typescript version of createCrudHook?
Use prefetchQuery with trpc
nested mutability - setQueryData
.filtered from oldData with one top level array filtered out, say) - setQueryData should work if I then update one of the underlying arrays, right?
Meaning - does setQueryData need to be immutable all the way down, or just the top level (structuralSharing is off)? I assume its the latter, but I'm hitting strange behavior where I create a new reference, and then mutate a child, but the query data doesn't update....React code splitting making react query stuck at fetching state
Error `Module parse failed: Bad character escape sequence (2:97)`

"isServer" check breaks some environments
refetchInterval. It was an amazing UX. Unfortunately, the introduction of the non-configurable "isServer" check broke that because window is undefined in the Raycast execution environment. The remainder of @tanstack/react-query works perfectly except for this one feature.
Anyone know a way around it?...Question about select option
Question about retry function in defaultOptions
How to handle zodErrors?
Trying to write a wrapper around useQuery for use with graphql subscriptions.
Use with AWS Amplify S3 storage?
Keep a local state after fetching data
Using useQuery, setInterval and useEffect in the same component
useQuery function that is wrapped in a getItems function, then I have a setInterval that updates a component state every second, to display the current hour. The fact that the state related to the interval is updated re-triggers the render of the page, so it re-triggers the getItems function every time. Fortunately useQuery is powerful, so it's not doing API call to backend. But it keeps re-fetching the items object, so everything using this object is re-rendered.
Before I was using useEffect for fetching the APIs, so the content of fetched items was kept, but now I've put my getItems ouside of useEffect.
What should I do to resolve this problem? ...Invalidating queries for queryKeys generated using tkdodo's key factory pattern with optional params
Weird build error when building my app