apollo
apollo copied to clipboard
🚀 Apollo/GraphQL integration for VueJS
I wasn't sure whether to raise this bug here or on [Apollo's page](https://github.com/apollographql/apollo-client/issues), but because the error is coming from `useQuery`, I figured I would raise it here first. **Describe...
**Describe the bug** Graphql unless there is an error with the request data, always returns 200. Given this, when there are errors in the response, I would expect that the...
Hello and thank you for your great work! I have a general question on how to update large queries that are either filtered, searched with a backend search (elastic search...
**Describe the bug** Please, refer to the component structure below. At some point `refetch` is being called, which populates `baz.qux`. However, `quux` is not being recomputed. ``` // root.vue const...
I use vue-apollo in localhost and use graphQL server as remote host. My Apollo `fetchPolicy` is on `cache-first`. But it doesn't cache the queries. When I disconnect my internet connection,...
**Is your feature request related to a problem? Please describe.** After https://github.com/vuejs/vue-apollo/pull/901 SSR bails out when any `vue-apollo` query fails. However one could alternatively still want to still have the...
I noticed the production app was using twice as much memory as the development builds. It seems this is the reason. In development builds apollo deep freezes the results. Reactivity...
**Describe the bug** Some context first: I'm using Quasar with Nest.JS as backend. I perform a request via GraphQL to fetch data from the backend, using `useQuery` composable with `errorPolicy:...
apolloClient.js: ` import Vue from 'vue' import { ApolloClient } from 'apollo-client' import { HttpLink, createHttpLink } from 'apollo-link-http' import { WebSocketLink } from 'apollo-link-ws' import { split } from...
**Describe the bug** [Apollo 3 recommends](https://www.apollographql.com/docs/react/pagination/core-api/#read-functions-for-paginated-fields) using InMemoryCache `typePolicies` for cache operations for pagination instead of `updateQuery` on the fetchMore function. When trying to use typePolicies with vue-apollo, the behaviour...