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 Actually, I'm not sure, that it is a bug. So, if I have a fetchQuery and my own query (which uses useQuery) for the one entity...

bug
package: query-core

Sometimes the ergonomics of a button- stuck tool is hard to use. Could there be a button, like in native dev tools to pin the query tool to the sides,...

help wanted
package: react-query-devtools

### Describe the bug The data tree in devtools won't stay open, it just minimizes almost right away. It seems like it won't remember the open/close state and goes back...

bug
help wanted
package: react-query-devtools

**Describe the bug** Selectors in combination with `useQuery` look very good. Creating multiple hooks on top of the original `useQuery` hook, allowing you to get different parts of the data...

help wanted
types

### Describe the bug Sandbox link When I click decrease (in the second part of the example), I get unexpected results on example 2.2; Because other suspense boundaries depend on...

bug
help wanted
suspense
v4

### Describe the bug Totally new to React Query. In a fresh React 16 app, created with `create-react-app` I followed the "Quick Start" - https://react-query.tanstack.com/quick-start It imports `getTodos` and `postTodo`...

**Describe the bug** **To Reproduce** ```ts const DemoA = () => { return ( ); }; const DemoB = () => { return ( ); }; const Works: React.FC =...

bug
suspense

**Describe the bug** The examples don't run on a local installation. **To Reproduce** Steps to reproduce the behavior: 1. clone the react-query repository 2. `cd examples/simple` 3. `yarn && yarn...

**Describe the bug** Using `queryClient.clear()` with suspense enabled causes an infinite loop. We encountered this in Blitz on user logout: https://github.com/blitz-js/blitz/pull/2249 **To Reproduce** Add the following to `src/react/tests/suspense.test.tsx` ```ts it('should...

suspense

### Discussed in https://github.com/tannerlinsley/react-query/discussions/2355 Originally posted by **luizeboli** June 8, 2021 Hello guys, I have this hook: ``` export const useOptions = () => { return useQueries([ { queryKey: 'groups',...