Update generated graphql.ts

This commit is contained in:
Quentin Gliech
2025-03-10 09:21:31 +01:00
parent 22d03c660b
commit 7319ae134c
+5 -1
View File
@@ -1870,9 +1870,13 @@ export class TypedDocumentString<TResult, TVariables>
implements DocumentTypeDecoration<TResult, TVariables>
{
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
private value: string;
public __meta__?: Record<string, any> | undefined;
constructor(private value: string, public __meta__?: Record<string, any> | undefined) {
constructor(value: string, __meta__?: Record<string, any> | undefined) {
super(value);
this.value = value;
this.__meta__ = __meta__;
}
toString(): string & DocumentTypeDecoration<TResult, TVariables> {