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
call 2 independent endpoints in one useMutation or should I use 2? What's the best practice?
data is possibly undefined
if (error) return .. and if (isLoading) return .. like in the docs, however it still says data might be undefined? Whats the way to deal with this in tanstakc query now?React-query devtools
React query with paginator.

Multiple mutations based on dynamic list - separate mutation for each row in the table
isLoading state for mutations.
For example, imagine the following GUI:
```...Invalidating a query from outside React context
queryClient.invalidateQueries() from outside the React context, like a timer or a socket.io listener?
One use case is a session timer that periodically checks to see if the session is about to expire, so I can pop up a dialog. I'm seeing some strange things with queries not getting updated when I invalidate from my timer.
I also want to be able to invalidate data when I get messages from a web socket, which is a similar problem....useInfiniteQuery, refetch certain page
Cannot disable query with Solidjs signal
query.isDisabled() is constantly false....Cache query errors
useQuery errors to account for staleTime?I have extracted
useQuery into separate hook and I am using it in several places. I am also displaying error when request fails in onError callback of that useQuery. Now when re-used in several places it is causing the error to display several times. ...Optimistic update when the request and response type are different
The useQuery field isLoading is changing whenever I focus on window,
typescript parallel useQuery/useInfiniteQuery type guard for data?
useQueries? I have a page that has a handful of mixed queries (regular and infinite) and what i would like to do is guarantee all have data before displaying anything. It's easily accomplished with a if
```ts
if (query1.data && query2.data && query3.data) { ...execute code after mutate

Cannot find module '@tanstack/react-query' or its corresponding type declarations.ts(2307)

followed pagination example from tanstack site, but not working, any feedback please?
useQuery is not refreshing data after setQueryData
useInfiniteQuery: initial pageParams is unknown until first fetch

Prefetch Query and NextJS SSR
How to assert NonNullable data on UseQuery
Is error resolved with `onError` callback?
onError callback or do I need to await and parse it?
```ts...