You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: test/generated-typescript-types.js
+16-16
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ ruleTester.run(
57
57
{
58
58
code: `
59
59
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
60
-
usePaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
60
+
usePaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
61
61
`
62
62
},
63
63
{
@@ -73,19 +73,19 @@ ruleTester.run(
73
73
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
74
74
75
75
const {data: ref} = useFragment(graphql\`fragment TestFragment_foo on User { id }\`, props.user);
76
-
usePaginationFragment<PaginationQuery, _>(graphql\`fragment TestPaginationFragment_foo on User { id }\`, ref);
76
+
usePaginationFragment<PaginationQuery>(graphql\`fragment TestPaginationFragment_foo on User { id }\`, ref);
77
77
`
78
78
},
79
79
{
80
80
code: `
81
81
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
82
-
useBlockingPaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
82
+
useBlockingPaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
83
83
`
84
84
},
85
85
{
86
86
code: `
87
87
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
88
-
useLegacyPaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
88
+
useLegacyPaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
89
89
`
90
90
},
91
91
{code: 'useQuery<Foo>(graphql`query Foo { id }`)'},
@@ -272,7 +272,7 @@ The prop passed to useFragment() should be typed with the type 'TestFragment_foo
272
272
errors: [
273
273
{
274
274
message:
275
-
'The `useRefetchableFragment` hook should be used with an explicit generated Typescript type, e.g.: useRefetchableFragment<TestFragmentQuery, _>(...)',
275
+
'The `useRefetchableFragment` hook should be used with an explicit generated Typescript type, e.g.: useRefetchableFragment<TestFragmentQuery>(...)',
276
276
line: 3,
277
277
column: 9
278
278
}
@@ -281,12 +281,12 @@ The prop passed to useFragment() should be typed with the type 'TestFragment_foo
281
281
output: `
282
282
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
283
283
import type {TestFragmentQuery} from './__generated__/TestFragmentQuery.graphql'
284
-
useRefetchableFragment<TestFragmentQuery, _>(graphql\`fragment TestFragment_foo on User @refetchable(queryName:"TestFragmentQuery") { id }\`)
284
+
useRefetchableFragment<TestFragmentQuery>(graphql\`fragment TestFragment_foo on User @refetchable(queryName:"TestFragmentQuery") { id }\`)
285
285
`
286
286
},
287
287
{
288
288
code: `
289
-
useRefetchableFragment<RefetchQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
289
+
useRefetchableFragment<RefetchQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
290
290
`,
291
291
errors: [
292
292
{
@@ -308,20 +308,20 @@ The prop passed to useRefetchableFragment() should be typed with the type 'TestF
308
308
errors: [
309
309
{
310
310
message:
311
-
'The `usePaginationFragment` hook should be used with an explicit generated Typescript type, e.g.: usePaginationFragment<TestFragmentQuery, _>(...)',
311
+
'The `usePaginationFragment` hook should be used with an explicit generated Typescript type, e.g.: usePaginationFragment<TestFragmentQuery>(...)',
312
312
line: 3,
313
313
column: 9
314
314
}
315
315
],
316
316
output: `
317
317
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
318
318
import type {TestFragmentQuery} from './__generated__/TestFragmentQuery.graphql'
319
-
usePaginationFragment<TestFragmentQuery, _>(graphql\`fragment TestFragment_foo on User @refetchable(queryName: "TestFragmentQuery") { id }\`)
319
+
usePaginationFragment<TestFragmentQuery>(graphql\`fragment TestFragment_foo on User @refetchable(queryName: "TestFragmentQuery") { id }\`)
320
320
`
321
321
},
322
322
{
323
323
code: `
324
-
usePaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
324
+
usePaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
325
325
`,
326
326
errors: [
327
327
{
@@ -339,7 +339,7 @@ The prop passed to usePaginationFragment() should be typed with the type 'TestFr
339
339
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
340
340
341
341
const refUnused = useFragment(graphql\`fragment TestFragment_foo on User { id }\`, props.user);
342
-
usePaginationFragment<PaginationQuery, _>(graphql\`fragment TestPaginationFragment_foo on User { id }\`, ref);
342
+
usePaginationFragment<PaginationQuery>(graphql\`fragment TestPaginationFragment_foo on User { id }\`, ref);
343
343
`,
344
344
errors: [
345
345
{
@@ -357,7 +357,7 @@ The prop passed to usePaginationFragment() should be typed with the type 'TestPa
357
357
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
358
358
359
359
const {data: refUnused }= useFragment(graphql\`fragment TestFragment_foo on User { id }\`, props.user);
360
-
usePaginationFragment<PaginationQuery, _>(graphql\`fragment TestPaginationFragment_foo on User { id }\`, ref);
360
+
usePaginationFragment<PaginationQuery>(graphql\`fragment TestPaginationFragment_foo on User { id }\`, ref);
361
361
`,
362
362
errors: [
363
363
{
@@ -378,15 +378,15 @@ The prop passed to usePaginationFragment() should be typed with the type 'TestPa
378
378
errors: [
379
379
{
380
380
message:
381
-
'The `useBlockingPaginationFragment` hook should be used with an explicit generated Typescript type, e.g.: useBlockingPaginationFragment<TestFragmentQuery, _>(...)',
381
+
'The `useBlockingPaginationFragment` hook should be used with an explicit generated Typescript type, e.g.: useBlockingPaginationFragment<TestFragmentQuery>(...)',
382
382
line: 3,
383
383
column: 9
384
384
}
385
385
]
386
386
},
387
387
{
388
388
code: `
389
-
useBlockingPaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
389
+
useBlockingPaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
390
390
`,
391
391
errors: [
392
392
{
@@ -409,7 +409,7 @@ The prop passed to useBlockingPaginationFragment() should be typed with the type
409
409
errors: [
410
410
{
411
411
message:
412
-
'The `useLegacyPaginationFragment` hook should be used with an explicit generated Typescript type, e.g.: useLegacyPaginationFragment<PaginationQuery, _>(...)',
412
+
'The `useLegacyPaginationFragment` hook should be used with an explicit generated Typescript type, e.g.: useLegacyPaginationFragment<PaginationQuery>(...)',
413
413
line: 3,
414
414
column: 9
415
415
}
@@ -418,7 +418,7 @@ The prop passed to useBlockingPaginationFragment() should be typed with the type
418
418
},
419
419
{
420
420
code: `
421
-
useLegacyPaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
421
+
useLegacyPaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
0 commit comments