apollo icon indicating copy to clipboard operation
apollo copied to clipboard

🚀 Apollo/GraphQL integration for VueJS

Results 190 apollo issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** If you go to apollo.vuejs.org/guide-composable/setup.html you will see this setup example ``` import { createApp, provide, h } from 'vue'...

enhancement

**Describe the bug** I am using Vue 3 (`[email protected]`) in my project. When upgrading to `@vue/[email protected]` I got the following peer dependency error saying Vue 3 was causing a peer...

**Describe the bug** I've been debugging an application where the skip was not evaluated correctly and stumbled upon the issue of the queries being called randomly. I expected the queries...

**Describe the bug** If the `enabled` option is `false` for the `useQuery` function and if you run a mutation that changes the state of one of the objects obtained using...

**Describe the bug** When trying to run Quasar application in SSR mode with vue/apollo-composable installed there is an error: `require() of ES Module /home/username/side/quasar-webpack/node_modules/@apollo/client/core/index.js from /home/username/side/quasar-webpack/node_modules/@vue/apollo-composable/dist/index.js not supported. Instead change...

**Describe the bug** After upgrading from `4.0.0-beta.12` to `4.0.0`, page loads stop working when using `useQuery` **To Reproduce** I have a Nuxt `^3.9.3` project using Vue `3.4.15` and Apollo Composable...

I expect to be able to make queries inside a pinia setup store as per https://github.com/vuejs/apollo/issues/1505. When I run the code below, however, result stays undefined. I can see from...

**Describe the bug** When using `onResult` the hook is called while the query is still loading and contains no data. This is a change from previous behaviour, is this intended?...

**Describe the bug** I've created a component with the following reactive query: ``` apollo: { profileByAccountId: { query: gql` query ProfileByAccountId($accountId: UUID!) { profileByAccountId(accountId: $accountId) { id pseudonym } }...

docs: Documentation only changes