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

**Describe the bug** The typing of `result.data` in the `onDone` event hook (returned by `useMutation` and `useQuery`) is `MyResult | null | undefined`. **To Reproduce** ```ts const { mutate, onDone...

First off, thanks for the amazing work on Vue Apollo! Thankful to have something like this. 🚀 **Describe the bug** This is possibly a user error, but I wasn't able...

**Describe the bug** The `fetchPolicy` `'no-cache'`is supposed to disable the default behavior for GraphQL queries to take the cached response of the query and thus save on network requests. I...

pending triage
need repro

Variables option in smart query isn't being waited for async `variables` function to be resolved before fetching. ```js apollo: { list: { query, async variables() { const data = await...

enhancement

In the documentation regarding pagination, it guides the user to use `updateQuery`. However, in ApolloClient v3 this is deprecated with a warning that it will be removed in the next...

docs

**Is your feature request related to a problem? Please describe.** I use data from previous request and if i use reactive function, then i have error because my result is...

enhancement

**Describe the bug** Updating variables does not trigger refetching data in vue-composable as described here: https://v4.apollo.vuejs.org/guide-composable/query.html#variables-ref. I tried updating value of variable by extracting variables from the query `const {...

pending triage

**Describe the bug** If there is a reference in the template, `useResult` gets executed twice, which can lead to odd behavior. If you use `onResult` instead, this does not happen....

**Describe the bug** When using `fetchPolicy` property on `$apollo` inside a Single File Vue Component, typescript throws the following error on terminal output: ``` ... long error stacktrace ... Types...

pending triage

**Describe the bug** The same request in different components results in infinite or slow page loading. **To Reproduce** Steps to reproduce the behavior: 1. Go to 'https://codesandbox.io/s/github/negezor/nuxt-apollo-3-slow-ssr' 2. Reload page...