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
Best way to "trigger" mutation on Page Load?
Missing context type in mutation callbacks
onSuccess, and the docs claim the third argument is a context, but actually it doesn't exist (see screenshot).
How do I really get access to the query client to do invalidation in this onSuccess?...
SSR with HydrationBoundary doesn't work, client fetches the data
Tanstack Query + Next.js router intergration.
Setting up new TanStack React Query with Server Components and Fetch Adapter
createTRPCOptionsProxy I pass my createContext function I get the following error:...Infinite query fetches next page on every rerender. Why?
showOwnOnly which triggers a rerender. On that rerender, I can see, that the infiniste query i am using fetches the next page.
The queryKey is stable (otherwise it probably would start at page 0 again).
Here is how I use the query:
...how to "pause" queries globally?
location_id param as the query key
2) A user can switch user by clicking on a button on the page which triggers a mutation POST call that updates the location_id in the database and then routes the user to a different page after the mutation completes.
...Query cache failing on client-component pre-rendered on server
Garbage collection for queries with searches
Using Next js and GRPC
setQueryData inside mutation behavior
How to annotate function, which returns queryOptions object.
Why doesn't the Suspense fallback trigger in the Suspense example?
<h1>Loading projects...</h1>?
https://tanstack.com/query/latest/docs/framework/react/examples/suspense...useQuery optional arguments?

useMutation onError never triggered?
useMutation in my custom hook. The onError logic is never getting triggered, the onSuccess is. The hook (throws on error 1/3, random):
```
import { useMutation } from '@tanstack/react-query';
...React Query hangs on NextJS 14 when navigating away from a page. Im not doing any custom prefetching
Error: No QueryClient set in Next.js App Router despite following Advanced SSR guide.
useQuery with server function?
db in the query options. However, this gets ran in the client so - pg can't be called there. What is the proper way to handle this in Tanstack Start with useQuery or queryClient perhaps?
`// some file
import { db } from "~/server/db";
...react queyr with maxPages and virtualized list
virtuoso for this, scrolling works fine for fetching UNTIL we get to 3 pages, say we have
[a,b,c], when we fetch the new one, the array becomes [b,c,d], so when the new page loads, virtuoso places me at the end of d which causes another refetch because we are at the bottom of the list...help with understanding useSuspenseQuery