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
Reusing queries and queryKey variable evaluation
useQuery triggers before calling it?
Data refresh don't trigger useEffect
useEffect on line 112.
https://codesandbox.io/s/epic-bird-dr9sw2?file=/src/index.js...useQueries dependency on previous useQuery not working correctly (scoping issue)?
Best way to query "sub-queries"
Old Value is rendered for a split second after mutation
useInfiniteQuery fetch multiple pages at once
useInfiniteQuery's API, however I'd also like to be able to jump to an item which isn't necessarily present on the client yet.
I've got a solution working, which uses useEffect and calls fetchNextPage as long as needed to reach a page with the wanted data in it. This obviously results in multiple requests and a 'rendering-cycle' like Request page => render => check if more pages needed => request page => render => check....
UX isn't really that nice, since its not a single request and render, but multiple request with multiple re-renders, resulting in the scroll bar jumping a lot. Obviously this also takes longer than having a single request.
...useErrorBoundary is not being caught by ErrorBoundary

Failed to execute 'put' on 'IDBObjectStore'
Using UseQuery with query params does not get new data after refetch
Passing QueryClient but still getting `No QueryClient set, use QueryClientProvider to set one
useQueries onSuccess callback

Dependent mutations with queryClient.setMutationDefaults
Encapsulating queries
component with query and table gets stuck indefinitely
Testing useQuery by mocking it's callback
spyOn function, which should spy on the named exported function and should use the mocked implementation if given....how to lazy query? is ok use mutation for it?
How to preserve Error UI while a refetch is in progress?
error state is reset to null
Also, is there a way to trigger globalLoaderChange only once, when the user first comes on the page, thereafter only the error ui provides the loading state. I tried playing around with failureCount, but was not successful.
...Is there a way to use useMutation with debounce?
how to invalidate data through mutation key?
