Skip to content

Commit eae6e01

Browse files
committed
fix circular reference in types
1 parent 120bada commit eae6e01

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/utilities/getIntrospectionQuery.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -243,25 +243,25 @@ export type IntrospectionNonNullTypeRef<
243243

244244
export type IntrospectionTypeRef =
245245
| IntrospectionNamedTypeRef
246-
| IntrospectionListTypeRef
246+
| IntrospectionListTypeRef<any>
247247
| IntrospectionNonNullTypeRef<
248-
IntrospectionNamedTypeRef | IntrospectionListTypeRef
248+
IntrospectionNamedTypeRef | IntrospectionListTypeRef<any>
249249
>;
250250

251251
export type IntrospectionOutputTypeRef =
252252
| IntrospectionNamedTypeRef<IntrospectionOutputType>
253-
| IntrospectionListTypeRef<IntrospectionOutputTypeRef>
253+
| IntrospectionListTypeRef<any>
254254
| IntrospectionNonNullTypeRef<
255255
| IntrospectionNamedTypeRef<IntrospectionOutputType>
256-
| IntrospectionListTypeRef<IntrospectionOutputTypeRef>
256+
| IntrospectionListTypeRef<any>
257257
>;
258258

259259
export type IntrospectionInputTypeRef =
260260
| IntrospectionNamedTypeRef<IntrospectionInputType>
261-
| IntrospectionListTypeRef<IntrospectionInputTypeRef>
261+
| IntrospectionListTypeRef<any>
262262
| IntrospectionNonNullTypeRef<
263263
| IntrospectionNamedTypeRef<IntrospectionInputType>
264-
| IntrospectionListTypeRef<IntrospectionInputTypeRef>
264+
| IntrospectionListTypeRef<any>
265265
>;
266266

267267
export type IntrospectionNamedTypeRef<

0 commit comments

Comments
 (0)