diff --git a/frontend/src/gql/graphql.ts b/frontend/src/gql/graphql.ts index b0b581717..f77561b9c 100644 --- a/frontend/src/gql/graphql.ts +++ b/frontend/src/gql/graphql.ts @@ -1870,9 +1870,13 @@ export class TypedDocumentString implements DocumentTypeDecoration { __apiType?: DocumentTypeDecoration['__apiType']; + private value: string; + public __meta__?: Record | undefined; - constructor(private value: string, public __meta__?: Record | undefined) { + constructor(value: string, __meta__?: Record | undefined) { super(value); + this.value = value; + this.__meta__ = __meta__; } toString(): string & DocumentTypeDecoration {