We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22d03c6 commit 7319ae1Copy full SHA for 7319ae1
frontend/src/gql/graphql.ts
@@ -1870,9 +1870,13 @@ export class TypedDocumentString<TResult, TVariables>
1870
implements DocumentTypeDecoration<TResult, TVariables>
1871
{
1872
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
1873
+ private value: string;
1874
+ public __meta__?: Record<string, any> | undefined;
1875
- constructor(private value: string, public __meta__?: Record<string, any> | undefined) {
1876
+ constructor(value: string, __meta__?: Record<string, any> | undefined) {
1877
super(value);
1878
+ this.value = value;
1879
+ this.__meta__ = __meta__;
1880
}
1881
1882
toString(): string & DocumentTypeDecoration<TResult, TVariables> {
0 commit comments