We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 825e6c0 commit 42db4d5Copy full SHA for 42db4d5
packages/vue-apollo-composable/src/useLazyQuery.ts
@@ -1,7 +1,7 @@
1
import { DocumentNode } from 'graphql'
2
import { isRef } from 'vue-demi'
3
import { useQueryImpl, DocumentParameter, VariablesParameter, OptionsParameter, UseQueryOptions, UseQueryReturn } from './useQuery'
4
-import type { OperationVariables } from '@apollo/client/core/index.js'
+import type { OperationVariables } from '@apollo/client/core'
5
6
export interface UseLazyQueryReturn<TResult, TVariables extends OperationVariables> extends UseQueryReturn<TResult, TVariables> {
7
load: (document?: DocumentNode | null, variables?: TVariables | null, options?: UseQueryOptions | null) => false | Promise<TResult>
0 commit comments