feat(deps): update to latest version of graphql

This commit is contained in:
2023-07-06 19:44:56 +02:00
parent 38767721c3
commit 90f74f37c3
6 changed files with 2239 additions and 3002 deletions
+6
View File
@@ -0,0 +1,6 @@
import { gql as apolloGql } from '@apollo/client/core'
import { markRaw } from 'vue'
export function gql(literals: string | readonly string[], ...args: any[]) {
return markRaw(apolloGql(literals, ...args))
}