query icon indicating copy to clipboard operation
query copied to clipboard

🤖 Powerful asynchronous state management, server-state utilities and data fetching for the web. TS/JS, React Query, Solid Query, Svelte Query and Vue Query.

Results 493 query issues
Sort by recently updated
recently updated
newest added

### Describe the bug When `select` returns an object with non-enumerable / symbol keys, those entries are dropped after `queryClient.setQueryData` is called,, but not at initial query. ### Your minimal,...

## 🎯 Changes ## ✅ Checklist - [x] I have followed the steps in the [Contributing guide](https://github.com/TanStack/query/blob/main/CONTRIBUTING.md). - [x] I have tested this code locally with `pnpm run test:pr`. ##...

package: angular-query-experimental

### Describe the bug I'm following the guidance [here](https://tanstack.com/query/v5/docs/framework/react/guides/advanced-ssr#streaming-with-server-components) to implement streaming with server components. I'm prefetching data like so (note, no await): ``` const streamingQueryClient = getQueryClient(); streamingQueryClient.prefetchQuery({ queryKey:...

### Describe the bug When using PersistQueryClientProvider with a large cache (≥5,000 queries), each setQueryData triggers a full dehydrate() and persistence cycle. This causes noticeable main-thread blocking (1–3 seconds) and...

### Describe the bug Here's a stackblitz that repro's the issue about 20% of the time (I think it's timing related): https://stackblitz.com/edit/stackblitz-starters-hn17w1mv?file=src%2Fmain.ts,src%2Findex.html If you click "edit" and change the "whatever"...

package: angular-query

DO NOT MERGE

package: react-query

## 🎯 Changes I changed UseQueryOptions and its derivatives UndefinedInitialQueryOptions / DefinedInitialQueryOptions to have base non-ref cases to later differentiate them in queryOptions function. I don't think I can foresee...

package: vue-query

In [this reduced test case](https://codesandbox.io/p/sandbox/react-dev-forked-lhxlvx?file=%2Fsrc%2FApp.js) I'm seeing some odd behaviour when combining React Query with React Actions/Transitions and `useOptimistic`. - We have a query that returns a count, starting at...

upstream

### Describe the bug It is possible to add a persister (I'm using the experimental_createQueryPersister) to the QueryClient via defaultOptions as follows: ``` export const queryClient = new QueryClient({ defaultOptions:...

package: svelte-query