File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -478,6 +478,7 @@ export type {
478
478
IntrospectionOptions ,
479
479
IntrospectionQuery ,
480
480
IntrospectionSchema ,
481
+ IntrospectionRootObjectType ,
481
482
IntrospectionType ,
482
483
IntrospectionInputType ,
483
484
IntrospectionOutputType ,
Original file line number Diff line number Diff line change @@ -188,17 +188,17 @@ export interface IntrospectionQuery {
188
188
189
189
export interface IntrospectionSchema {
190
190
readonly description ?: Maybe < string > ;
191
- readonly queryType : IntrospectionNamedTypeRef < IntrospectionObjectType > ;
192
- readonly mutationType : Maybe <
193
- IntrospectionNamedTypeRef < IntrospectionObjectType >
194
- > ;
195
- readonly subscriptionType : Maybe <
196
- IntrospectionNamedTypeRef < IntrospectionObjectType >
197
- > ;
191
+ readonly queryType : IntrospectionRootObjectType ;
192
+ readonly mutationType : Maybe < IntrospectionRootObjectType > ;
193
+ readonly subscriptionType : Maybe < IntrospectionRootObjectType > ;
198
194
readonly types : ReadonlyArray < IntrospectionType > ;
199
195
readonly directives : ReadonlyArray < IntrospectionDirective > ;
200
196
}
201
197
198
+ export interface IntrospectionRootObjectType {
199
+ readonly name : string ;
200
+ }
201
+
202
202
export type IntrospectionType =
203
203
| IntrospectionScalarType
204
204
| IntrospectionObjectType
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export type {
5
5
IntrospectionOptions ,
6
6
IntrospectionQuery ,
7
7
IntrospectionSchema ,
8
+ IntrospectionRootObjectType ,
8
9
IntrospectionType ,
9
10
IntrospectionInputType ,
10
11
IntrospectionOutputType ,
You can’t perform that action at this time.
0 commit comments