python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Apollo Vue client query result not available to be preprocessed
my code has a query that returns a collection of books:
import { useQuery, useResult, useMutation } from "@vue/apollo-composable";
import gql from "graphql-tag";
const GETALLBOOKS...
lee3star
Votes: 0
Answers: 0
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"...
lee3star
Votes: 0
Answers: 1
Vue-apollo refetch/update data after prop change
I'm having a problem with refeching data when my prop(id) is changing.
-- moveing between profiles (profile/1 to profile/2) --
I scour through the internet to find some information. Tried this.$forceU...

AnthonyMalvov
Votes: 0
Answers: 0
Mutate a result from "useResult" (Vue Apollo)
I am using the Composition API. I have a component which queries the backend and returns a list of events:
const { result, loading, error } = useQuery(FindEvents, variables, { fetchPolicy: 'cache-and-...

Andross
Votes: 0
Answers: 0