Skip to content

Commit 7319ae1

Browse files
committed
Update generated graphql.ts
1 parent 22d03c6 commit 7319ae1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontend/src/gql/graphql.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1870,9 +1870,13 @@ export class TypedDocumentString<TResult, TVariables>
18701870
implements DocumentTypeDecoration<TResult, TVariables>
18711871
{
18721872
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
1873+
private value: string;
1874+
public __meta__?: Record<string, any> | undefined;
18731875

1874-
constructor(private value: string, public __meta__?: Record<string, any> | undefined) {
1876+
constructor(value: string, __meta__?: Record<string, any> | undefined) {
18751877
super(value);
1878+
this.value = value;
1879+
this.__meta__ = __meta__;
18761880
}
18771881

18781882
toString(): string & DocumentTypeDecoration<TResult, TVariables> {

0 commit comments

Comments
 (0)