From 7319ae134c52022cfff6e2e37455e3faa4ecbde0 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Mon, 10 Mar 2025 09:21:31 +0100 Subject: [PATCH] Update generated graphql.ts --- frontend/src/gql/graphql.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 {