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 there a way to set a types for queryClient without casting everytime?
Quick question, can I use react-query to not only load data, but to manage state instead of redux?

invalidateQuery - Error: Not implemented
Custom hook typing overload
Bug? Unable to narrow the discriminated union type for vue-query
data type from a discriminated union when using vue-query
A minimal example below
```vue
<script setup lang="ts">...How do I handle errors locally?
useErrorBoundary: (error) => error.response?.status >= 500,
useErrorBoundary: (error) => error.response?.status >= 500,
How to tie a list of IDs with fetched data
React router and queryClient.fetchQuery() inside loader make useQuery() to only return 'success'
useInfiniteQuery with RSCs
initialData in the useInfiniteQuery hook.
This works perfectly. The rub is, on the page, the user can modify filters, which causes the querystring to change, and the RSC to reload data, and send down the updated data....React Query Persist Question
How to mock refetch in jest with typescript
useQuery and exports its refetch property. How could I mock this in jest? its definition is <TPageData>(options?: RefetchOptions & RefetchQueryFilters<TPageData>) => Promise<QueryObserverResult<TData, TError>> , which means the return type itself has a refetch so not sure how to handle the recursion.What are the current options for type-safe codegen based on openApi spec?
How to use next.js router.push() properly with an useQuery custom hook call?
useInfiniteQuery - Resets data on change to input value.
How to implement react-query in this use-case? And how to transition from Zustand to React Query?
Best way to have an inactivity timer in react-query?
QueryCache/MutationCache with onSuccess calling to a provider/store?
- Subscribe within my component using mutationCache/queryCache.subscribe?
- Something else?...Can I call cancelQueries from any queryClient instance?
How to clear cached data (security standpoint)
