Skip to content

Commit 50e0127

Browse files
committed
fix circular reference in types
1 parent cd2ae09 commit 50e0127

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/utilities/getIntrospectionQuery.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -254,25 +254,25 @@ export type IntrospectionNonNullTypeRef<
254254

255255
export type IntrospectionTypeRef =
256256
| IntrospectionNamedTypeRef
257-
| IntrospectionListTypeRef
257+
| IntrospectionListTypeRef<any>
258258
| IntrospectionNonNullTypeRef<
259-
IntrospectionNamedTypeRef | IntrospectionListTypeRef
259+
IntrospectionNamedTypeRef | IntrospectionListTypeRef<any>
260260
>;
261261

262262
export type IntrospectionOutputTypeRef =
263263
| IntrospectionNamedTypeRef<IntrospectionOutputType>
264-
| IntrospectionListTypeRef<IntrospectionOutputTypeRef>
264+
| IntrospectionListTypeRef<any>
265265
| IntrospectionNonNullTypeRef<
266266
| IntrospectionNamedTypeRef<IntrospectionOutputType>
267-
| IntrospectionListTypeRef<IntrospectionOutputTypeRef>
267+
| IntrospectionListTypeRef<any>
268268
>;
269269

270270
export type IntrospectionInputTypeRef =
271271
| IntrospectionNamedTypeRef<IntrospectionInputType>
272-
| IntrospectionListTypeRef<IntrospectionInputTypeRef>
272+
| IntrospectionListTypeRef<any>
273273
| IntrospectionNonNullTypeRef<
274274
| IntrospectionNamedTypeRef<IntrospectionInputType>
275-
| IntrospectionListTypeRef<IntrospectionInputTypeRef>
275+
| IntrospectionListTypeRef<any>
276276
>;
277277

278278
export type IntrospectionNamedTypeRef<

0 commit comments

Comments
 (0)