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
router.tsx for Convex + Start RC
<ConvexAuthProvider>
as a child of <QueryClientProvider>
. Is it redundant?
deps:
```json
"@convex-dev/auth": "^0.0.90",...Worrying about optimistic Update performance in UseInfiniteQuery
How can I tell if my query cache is being used successfully?
Looking for work as a Frontend developer
invalidateQueries does not work as expected
Caching for fetching multiple ids in different batches
"No QueryClient set" after react-query update to 5.85.6.
react-query
dependency in a react app from 5.85.5 to 5.90.1, which uses tanstack/react-router
. Suddenly I get
"No QueryClient set, use QueryClientProvider to set one
errors, but only in production (what bit me 😅 ).
I also noticed that the bundle size has been increased by 10 kb (unzipped).
...context.client undefined in react query V5
Docs: Optimistic Updates issue
To do this, useMutation's onMutate handler option allows you to return a value that will later be passed to both onError and onSettled handlers as the last argument. In most cases, it is most useful to pass a rollback function.
To do this, useMutation's onMutate handler option allows you to return a value that will later be passed to both onError and onSettled handlers as the last argument. In most cases, it is most useful to pass a rollback function.

When to use a utility and when to use a custom hook with select?

Best way to handle errors with multiple components sharing queries

Looking for work as a Frontend developer
Better-Auth Integration
invalidateQueries not invalidating
wrapInSuspense: true
). I have two APIs: one is a list of users and the other is the user details. You can favorite a user on the list page. You can click on their username to take them to the details page. You can view and favorite the user on the details page.
On the list page I can see user1 is favorited. I click on user1 and it takes them to view user1 details. I see that they are favorited here too. I go back to the list page and unfavorite. I see they are unfavorited there. I go back to the user page and see they haven't been unfavorited. I call invalidateQueries on both inside the mutator.
Toggling the favorite on either page will invalidate the currently rendered view correctly, but it's as if the other view isn't being marked as stale....useSuspenseQuery + TansTack Start with better-auth
New to Tanstack Query, Help me understand ,
Disabling `useSuspenseQuery` on the server with TanStack Start
enabled
is not a supported property with useSuspenseQuery
. ...Preserving search results with useInfiniteQuery
Looking for work as a Frontend developer
invalidateQueries not triggering refetch consistently across projects