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

Improves the grammar. Makes the point obvious.

**Describe the bug** using onResult hook, when the exact same query is also used within another component, will only be executed within one component. I'm not 100% sure if this...

bug
pending triage
v4

**Describe the bug** Trying to use `useGlobalQueryLoading` and pass it to a component as a prop. Causes this message to appear. ```Maximum recursive updates exceeded in component . This means...

**Describe the bug** When settings the query options with `{ fetchPolicy: "cache-and-network" }`, the cached result is not instantly returned. Instead, it waits until the data is fetched from the...

**Describe the bug** When specifying ``context`` (like in queries and mutations, to provide the bearer token with headers) for ``useSubscription`` or ``subscribeToMore``, the provided headers are not sent with the...

**Describe the bug** I request back with useQuery, store result in variable with useResult. When I mutate for create an entity, apollo's cache is updated but not my variable used...

**Describe the bug** When using `useQuery`, the following error occurs: ``` Uncaught Invariant Violation: Schema type definitions not allowed in queries. Found: "undefined" at new InvariantError (webpack-internal:///./node_modules/ts-invariant/lib/invariant.esm.js:18:28) at eval (webpack-internal:///./node_modules/@apollo/client/utilities/graphql/getFromAST.js:20:29)...

**Describe the bug** When using a reactive pollInterval function and then issuing a refetch on the query with new variables the inner pollInterval property does not properly get set on...

**Describe the bug** The pick function works when running locally, but on build, Vue3 runs vue-tsc and then i get the error: **TS2318: Cannot find global type 'BigInt'.** **To Reproduce**...

**Describe the bug** When using TypeScript, you lose type safety when using a function to supply the variables: ```ts import { gql } from '@apollo/client' import { ref } from...