Skip to content

Commit

Permalink
fix circular reference in types
Browse files Browse the repository at this point in the history
  • Loading branch information
saihaj committed Jan 9, 2021
1 parent 128d93b commit ad732e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/utilities/getIntrospectionQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,25 +254,25 @@ export type IntrospectionNonNullTypeRef<

export type IntrospectionTypeRef =
| IntrospectionNamedTypeRef
| IntrospectionListTypeRef
| IntrospectionListTypeRef<any>
| IntrospectionNonNullTypeRef<
IntrospectionNamedTypeRef | IntrospectionListTypeRef
IntrospectionNamedTypeRef | IntrospectionListTypeRef<any>
>;

export type IntrospectionOutputTypeRef =
| IntrospectionNamedTypeRef<IntrospectionOutputType>
| IntrospectionListTypeRef<IntrospectionOutputTypeRef>
| IntrospectionListTypeRef<any>
| IntrospectionNonNullTypeRef<
| IntrospectionNamedTypeRef<IntrospectionOutputType>
| IntrospectionListTypeRef<IntrospectionOutputTypeRef>
| IntrospectionListTypeRef<any>
>;

export type IntrospectionInputTypeRef =
| IntrospectionNamedTypeRef<IntrospectionInputType>
| IntrospectionListTypeRef<IntrospectionInputTypeRef>
| IntrospectionListTypeRef<any>
| IntrospectionNonNullTypeRef<
| IntrospectionNamedTypeRef<IntrospectionInputType>
| IntrospectionListTypeRef<IntrospectionInputTypeRef>
| IntrospectionListTypeRef<any>
>;

export type IntrospectionNamedTypeRef<
Expand Down

0 comments on commit ad732e5

Please sign in to comment.