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
Devtools performance
basic React example....Can manage to understand optimistic update.
Utilizing newData and oldData properties in refetchInterval
refetchInterval function on whether newData and oldData are equal. I have looked at structuralSharing and the deprecated isDataEqual options, but it seems like both of these have changing the result of the query in mind. I just want to be able to leverage this property to make a judgment about how fast to refetch. How can I do this? Would I need to provide a function to structuralSharing and then pass the query into the refetchInterval...documentation clarification
useMutation stuck on isLoading set to true
A bug in React Native section
need some clarification please
Is it possible to extract useMutation from the component/page file in Next.js?
Exposing mutation state through zustand
useMutation call (isLoading, isSuccess etc) like we can with useQuery, so I want to sync it to a zustand store:
```tsx
const useStore = create(set => ({...Setting the initial data of an useQuery with SSR data
NextJS application that I am now trying to list rows of a table called Message. I have to now server rendered it, but I need to refetch it and consider using useQuery aswell. Whats the approach I should use when the inital data should be the SSR one, but then after that im refetching from the client side.
Here is the SSR code I currently have: ...Clarification on Handling Chunks of Data in postMutation Response
way to log out number of query observers mounted for a query
Is enriching the query-return props a good practice?
How to trigger query when url param changes
const fetchNotes = async () => {...
data: T | undefined best practices
Query manual refetch indicator
query.isRefetching property for that purpose, but looks like it doesn't differentiate between a manual refetch with query.refetch and a invalidation with queryClient.invalidateQueries....All components must be client component when fetch data on server component?
A Normalized cache in React Query
Map queries in a single hook
I want to fetch data for each URL inside one
useQuery or useQueries hook.Currently, I have this
useQueries hook which returns an error that queries is undefined:
```
const [results] = useQueries({...share mutation state (status)
