@@ -390,8 +390,8 @@ export type NonNullTypeNode = {
390
390
export type TypeSystemDefinitionNode =
391
391
| SchemaDefinitionNode
392
392
| TypeDefinitionNode
393
- | TypeSystemExtensionNode
394
- | DirectiveDefinitionNode ;
393
+ | DirectiveDefinitionNode
394
+ | TypeSystemExtensionNode ;
395
395
396
396
export type SchemaDefinitionNode = {
397
397
+ kind : 'SchemaDefinition' ,
@@ -503,6 +503,13 @@ export type InputObjectTypeDefinitionNode = {
503
503
504
504
export type TypeSystemExtensionNode = SchemaExtensionNode | TypeExtensionNode ;
505
505
506
+ export type SchemaExtensionNode = {
507
+ + kind : 'SchemaExtension' ,
508
+ + loc ? : Location ,
509
+ + directives ?: $ReadOnlyArray < DirectiveNode > ,
510
+ + operationTypes ?: $ReadOnlyArray < OperationTypeDefinitionNode > ,
511
+ } ;
512
+
506
513
export type TypeExtensionNode =
507
514
| ScalarTypeExtensionNode
508
515
| ObjectTypeExtensionNode
@@ -511,13 +518,6 @@ export type TypeExtensionNode =
511
518
| EnumTypeExtensionNode
512
519
| InputObjectTypeExtensionNode ;
513
520
514
- export type SchemaExtensionNode = {
515
- + kind : 'SchemaExtension' ,
516
- + loc ? : Location ,
517
- + directives ?: $ReadOnlyArray < DirectiveNode > ,
518
- + operationTypes ?: $ReadOnlyArray < OperationTypeDefinitionNode > ,
519
- } ;
520
-
521
521
export type ScalarTypeExtensionNode = {
522
522
+ kind : 'ScalarTypeExtension' ,
523
523
+ loc ? : Location ,
0 commit comments