vue-query icon indicating copy to clipboard operation
vue-query copied to clipboard

Hooks for fetching, caching and updating asynchronous data in Vue

Results 19 vue-query issues
Sort by recently updated
recently updated
newest added

Nuxt 3 uses useState API to sync state between server and client

I mean, I can do it myself, but I thought vue-query was made to do it for me. It works with the normal `useQuery()`. So I'm talking about the `enabled`...

Hi, I'm having troubles when typing a composable for a query. I have an axios endpoint which need a number to be a valid call ![image](https://user-images.githubusercontent.com/61592570/182428745-1649c8ca-58c8-487b-a119-c99cfe90f5a4.png) Then I made this...

I would like to be able to use [effectScope](https://vuejs.org/api/reactivity-advanced.html#effectscope) ```ts const scope = effectScope() scope.run(() => { const result = useQuery(["todos"], fetchTodoList); }); ```

I have this seemingly very simple query that I would expect to never run if `id` is `0` or `undefined`, and most of the time it works. However, every now...

A few [direct imports](https://github.com/DamianOsipiuk/vue-query/blob/v2.0.0-beta.5/src/vuejs/queryClient.ts#L24-L25) from `@tanstack/query-core/src` source code cause strict mode Typescript compilations to fail: ``` ../../node_modules/@tanstack/query-core/src/focusManager.ts:16:18 - error TS7030: Not all code paths return a value. 16 this.setup =...

![image](https://user-images.githubusercontent.com/17926105/179653184-d6c6d515-7be1-45c2-a549-ee80161070f3.png)

# react-query/core List of tickets in `react-query` V4 (not finalized): https://github.com/tannerlinsley/react-query/issues?q=is%3Aissue+label%3Av4+is%3Aclosed - [x] https://github.com/tannerlinsley/react-query/pull/2988 - [x] https://github.com/tannerlinsley/react-query/pull/3071 - [x] Update docs - [x] https://github.com/tannerlinsley/react-query/pull/3006 - [x] https://github.com/tannerlinsley/react-query/pull/2996 - [x] https://github.com/tannerlinsley/react-query/pull/2937...

Again, amazing library ... It would be extremely useful if we could specify when to do a force refresh on, or flush out data, for an infinite query. For example,...

Hello 👋 After updating from vue2.6 with vue-demi, to vue2.7 without vue-demi, im running into an issue where Vue no longer is registering the VueQueryPlugin. here is how i have...