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
Is it possible to automatically invalidate suspense query before fetching?
useQuery then server component possibility?
What is the best way to fetch data which is dependent on results from an infiniteQuery?
useSuspenseQueries noncontinuous suspense
combine, but I notice some strange behaviour when I use it in useSuspenseQueries.
Given the code:
```...Removing `onSuccess` from this query
onSuccess is a bit of an antipattern with useQuery. How could I remove it in this instance (using v3 RQ)? Thanks
```ts
const data = useFetchTaskOutput(taskId, {
enabled: !outputHasCompleted,...Disable suspense for a specific query
{ suspense: false }. What's the recommended approach now to disable the suspense behavior for a specific query? What's the expected behavior if I set suspense: true globally on the query client? Would the useQuery hooks use the Suspense boundary or that's ignored for them since there is now a useSuspenseQuery hook? The overlap is a bit confusing for me.
Thank you...Mutating on visiting a page
Download button: query or mutation?
GET requests, my inclination is to use useQuery — but because it can be a lot of data, we don't want to fetch immediately on page load.
I haven't found any guidance either here, in the docs, in Github, or on Stack Overflow on which is the recommended mechanism:
Option 1: useQuery...Why am I able to only send one arguement to mutation function?

Understanding whether a fetch is made on the server
Is it okay to call a server action directly from a useQuery or a useMutation hook? (with example)
How to call onSettled function in new Tankstack query version 5
Having trouble grasping Server Components
client.defaultQueryOption is not a function

Chaining queries with a minimum wait time
devtools broken without styleNonce
This is a regression from this fix: https://github.com/TanStack/query/releases/tag/v4.0.0-beta.4...
Issue with onFocus after updating to react-query v5

Property 'data' does not exist on type 'Promise<{...
Is it okay to call a server action directly from a useQuery or a useMutation hook? (with example)
How to share useMutation() return value across components?