Skip to content

Commit f29444d

Browse files
committed
Fix invalid typescipt types
1 parent 0c91b68 commit f29444d

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

src/rule-generated-typescript-types.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -437,13 +437,13 @@ module.exports = {
437437
const queryName = getRefetchableQueryName(node.arguments[0]);
438438
context.report({
439439
node: node,
440-
message: `The \`${hookName}\` hook should be used with an explicit generated Typescript type, e.g.: ${hookName}<{{queryName}}, _>(...)`,
440+
message: `The \`${hookName}\` hook should be used with an explicit generated Typescript type, e.g.: ${hookName}<{{queryName}}>(...)`,
441441
data: {
442442
queryName: queryName || defaultQueryName
443443
},
444444
fix:
445445
queryName != null && options.fix
446-
? createTypeImportFixer(node, queryName, `${queryName}, _`)
446+
? createTypeImportFixer(node, queryName, `${queryName}`)
447447
: null
448448
});
449449
}

test/generated-typescript-types.js

+16-16
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ruleTester.run(
5757
{
5858
code: `
5959
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 }\`)
6161
`
6262
},
6363
{
@@ -73,19 +73,19 @@ ruleTester.run(
7373
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
7474
7575
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);
7777
`
7878
},
7979
{
8080
code: `
8181
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 }\`)
8383
`
8484
},
8585
{
8686
code: `
8787
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 }\`)
8989
`
9090
},
9191
{code: 'useQuery<Foo>(graphql`query Foo { id }`)'},
@@ -272,7 +272,7 @@ The prop passed to useFragment() should be typed with the type 'TestFragment_foo
272272
errors: [
273273
{
274274
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>(...)',
276276
line: 3,
277277
column: 9
278278
}
@@ -281,12 +281,12 @@ The prop passed to useFragment() should be typed with the type 'TestFragment_foo
281281
output: `
282282
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
283283
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 }\`)
285285
`
286286
},
287287
{
288288
code: `
289-
useRefetchableFragment<RefetchQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
289+
useRefetchableFragment<RefetchQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
290290
`,
291291
errors: [
292292
{
@@ -308,20 +308,20 @@ The prop passed to useRefetchableFragment() should be typed with the type 'TestF
308308
errors: [
309309
{
310310
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>(...)',
312312
line: 3,
313313
column: 9
314314
}
315315
],
316316
output: `
317317
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
318318
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 }\`)
320320
`
321321
},
322322
{
323323
code: `
324-
usePaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
324+
usePaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
325325
`,
326326
errors: [
327327
{
@@ -339,7 +339,7 @@ The prop passed to usePaginationFragment() should be typed with the type 'TestFr
339339
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
340340
341341
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);
343343
`,
344344
errors: [
345345
{
@@ -357,7 +357,7 @@ The prop passed to usePaginationFragment() should be typed with the type 'TestPa
357357
import type {TestFragment_foo$key} from 'TestFragment_foo.graphql';
358358
359359
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);
361361
`,
362362
errors: [
363363
{
@@ -378,15 +378,15 @@ The prop passed to usePaginationFragment() should be typed with the type 'TestPa
378378
errors: [
379379
{
380380
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>(...)',
382382
line: 3,
383383
column: 9
384384
}
385385
]
386386
},
387387
{
388388
code: `
389-
useBlockingPaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
389+
useBlockingPaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
390390
`,
391391
errors: [
392392
{
@@ -409,7 +409,7 @@ The prop passed to useBlockingPaginationFragment() should be typed with the type
409409
errors: [
410410
{
411411
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>(...)',
413413
line: 3,
414414
column: 9
415415
}
@@ -418,7 +418,7 @@ The prop passed to useBlockingPaginationFragment() should be typed with the type
418418
},
419419
{
420420
code: `
421-
useLegacyPaginationFragment<PaginationQuery, _>(graphql\`fragment TestFragment_foo on User { id }\`)
421+
useLegacyPaginationFragment<PaginationQuery>(graphql\`fragment TestFragment_foo on User { id }\`)
422422
`,
423423
errors: [
424424
{

0 commit comments

Comments
 (0)