apollo
apollo copied to clipboard
🚀 Apollo/GraphQL integration for VueJS
**Describe the bug** On upgrading to Vue^2.7 and @vue/apollo-composable^4.0.0-alpha.19: - The `useQuery` composable does not re-trigger on changes to the query variables argument, when the variables argument is a `Ref`...
**Is your feature request related to a problem? Please describe.** The documentation on v4 for subscriptions updateQuery is wrong. https://v4.apollo.vuejs.org/guide-composable/subscription.html#subscribetomore v3 apollo client made cache read-only / immutable. Uncaught TypeError:...
This old piece of code tried to get the result immediately by calling getCurrentResult(), except that the function will also set the internal "last" result if called without a `false`...
**Describe the bug** The debounce delay should apply only to variable updates/refetches rather than the initial query load – the scenario it's creating for me is that when then passing...
**There is an advanced filter on the website, and we must only transfer the data to the variables object that the user has chosen. We must remove the data from...
**Describe the bug** `vue add apollo` fails with an error. **To Reproduce** Steps to reproduce the behavior: 1. create a simple app using vue 3 CLI 2. cd into project...
**Describe the bug** When VueJS 3 application is running in ssr mode, the prefetch apollo is not working. **To Reproduce** ```javascript export default defineComponent({ name: 'Graphql', setup() { const {...
**Describe the bug** When using `useMutationLoading` to check wether or not the mutation is still in a "loading" state, the ref returns `true` in the onDone hook of that mutation....
**Describe the bug** A clear and concise description of what the bug is. When destructuring `load` from `useLazyzQuery`, you need to provide the query _again_ for some reason, eventhough it...