@@ -243,25 +243,25 @@ export type IntrospectionNonNullTypeRef<
243
243
244
244
export type IntrospectionTypeRef =
245
245
| IntrospectionNamedTypeRef
246
- | IntrospectionListTypeRef
246
+ | IntrospectionListTypeRef < any >
247
247
| IntrospectionNonNullTypeRef <
248
- IntrospectionNamedTypeRef | IntrospectionListTypeRef
248
+ IntrospectionNamedTypeRef | IntrospectionListTypeRef < any >
249
249
> ;
250
250
251
251
export type IntrospectionOutputTypeRef =
252
252
| IntrospectionNamedTypeRef < IntrospectionOutputType >
253
- | IntrospectionListTypeRef < IntrospectionOutputTypeRef >
253
+ | IntrospectionListTypeRef < any >
254
254
| IntrospectionNonNullTypeRef <
255
255
| IntrospectionNamedTypeRef < IntrospectionOutputType >
256
- | IntrospectionListTypeRef < IntrospectionOutputTypeRef >
256
+ | IntrospectionListTypeRef < any >
257
257
> ;
258
258
259
259
export type IntrospectionInputTypeRef =
260
260
| IntrospectionNamedTypeRef < IntrospectionInputType >
261
- | IntrospectionListTypeRef < IntrospectionInputTypeRef >
261
+ | IntrospectionListTypeRef < any >
262
262
| IntrospectionNonNullTypeRef <
263
263
| IntrospectionNamedTypeRef < IntrospectionInputType >
264
- | IntrospectionListTypeRef < IntrospectionInputTypeRef >
264
+ | IntrospectionListTypeRef < any >
265
265
> ;
266
266
267
267
export type IntrospectionNamedTypeRef <
0 commit comments