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 f545763 commit 23c0c98Copy full SHA for 23c0c98
packages/vue-apollo-composable/src/useLazyQuery.ts
@@ -33,7 +33,6 @@ export function useLazyQuery<
33
return new Promise<TResult>((resolve, reject) => {
34
const { off: offResult } = query.onResult((result) => {
35
if (!result.loading) {
36
- console.log('result', result)
37
resolve(result.data)
38
offResult()
39
offError()
0 commit comments