All Questions
4 questions
1
vote
1
answer
2k
views
Quasar 2 + Apollo: Error: Apollo client with id default not found. Use provideApolloClient() if you are outside of a component setup
followed the steps in https://github.com/quasarframework/app-extension-apollo/tree/v2 to install Apollo extension to Quasar 2.4.9:
"devDependencies": {
"@babel/eslint-parser":...
0
votes
1
answer
1k
views
vue apollo 4 not returning graphql query results
In an effort to use version 4 of Vue apollo in cooperation with the composition api as shown in this tutorial we cannot seem to get any result from a standard graphql query.
A part of our setup:
// ...
1
vote
3
answers
1k
views
How to add @vue/apollo-composable to Quasar Frramework
We're trying to add a boot file to Quasar Framwework to be able to use @vue/apollo-composable with the Vue composition API. This tutorial explains how that is done for the old apollo-client and this ...
0
votes
2
answers
989
views
Setp Apollo graphql in Quasar Framework v1
I'm trying to install vue apollo as boot in quasar
Boot file : src/boot/vue-apollo.js
import VueApollo from 'vue-apollo'
import ApolloClient from 'apollo-boost'
const apolloClient = new ...