We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3045a3 commit 9b9929eCopy full SHA for 9b9929e
1 file changed
benchmark/fixtures.js
@@ -5,8 +5,9 @@ export const bigSchemaSDL = fs.readFileSync(
5
'utf8',
6
);
7
8
-export const bigDocumentSDL = JSON.parse(
9
- fs.readFileSync(new URL('kitchen-sink.graphql', import.meta.url), 'utf8'),
+export const bigDocumentSDL = fs.readFileSync(
+ new URL('kitchen-sink.graphql', import.meta.url),
10
+ 'utf8',
11
12
13
export const bigSchemaIntrospectionResult = JSON.parse(
0 commit comments