-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathast.ts
787 lines (681 loc) · 21.3 KB
/
ast.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
import type { Kind } from './kinds.js';
import type { Source } from './source.js';
import type { TokenKind } from './tokenKind.js';
/**
* Contains a range of UTF-8 character offsets and token references that
* identify the region of the source from which the AST derived.
*/
export class Location {
/**
* The character offset at which this Node begins.
*/
readonly start: number;
/**
* The character offset at which this Node ends.
*/
readonly end: number;
/**
* The Token at which this Node begins.
*/
readonly startToken: Token;
/**
* The Token at which this Node ends.
*/
readonly endToken: Token;
/**
* The Source document the AST represents.
*/
readonly source: Source;
constructor(startToken: Token, endToken: Token, source: Source) {
this.start = startToken.start;
this.end = endToken.end;
this.startToken = startToken;
this.endToken = endToken;
this.source = source;
}
get [Symbol.toStringTag]() {
return 'Location';
}
toJSON(): { start: number; end: number } {
return { start: this.start, end: this.end };
}
}
/**
* Represents a range of characters represented by a lexical token
* within a Source.
*/
export class Token {
/**
* The kind of Token.
*/
readonly kind: TokenKind;
/**
* The character offset at which this Node begins.
*/
readonly start: number;
/**
* The character offset at which this Node ends.
*/
readonly end: number;
/**
* The 1-indexed line number on which this Token appears.
*/
readonly line: number;
/**
* The 1-indexed column number at which this Token begins.
*/
readonly column: number;
/**
* For non-punctuation tokens, represents the interpreted value of the token.
*
* Note: is undefined for punctuation tokens, but typed as string for
* convenience in the parser.
*/
readonly value: string;
/**
* Tokens exist as nodes in a double-linked-list amongst all tokens
* including ignored tokens. <SOF> is always the first node and <EOF>
* the last.
*/
readonly prev: Token | null;
readonly next: Token | null;
// eslint-disable-next-line max-params
constructor(
kind: TokenKind,
start: number,
end: number,
line: number,
column: number,
value?: string,
) {
this.kind = kind;
this.start = start;
this.end = end;
this.line = line;
this.column = column;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
this.value = value!;
this.prev = null;
this.next = null;
}
get [Symbol.toStringTag]() {
return 'Token';
}
toJSON(): {
kind: TokenKind;
value?: string;
line: number;
column: number;
} {
return {
kind: this.kind,
value: this.value,
line: this.line,
column: this.column,
};
}
}
/**
* The list of all possible AST node types.
*/
export type ASTNode =
| NameNode
| DocumentNode
| OperationDefinitionNode
| VariableDefinitionNode
| VariableNode
| SelectionSetNode
| FieldNode
| ArgumentNode
| FragmentSpreadNode
| InlineFragmentNode
| FragmentDefinitionNode
| IntValueNode
| FloatValueNode
| StringValueNode
| BooleanValueNode
| NullValueNode
| EnumValueNode
| ListValueNode
| ObjectValueNode
| ObjectFieldNode
| DirectiveNode
| NamedTypeNode
| ListTypeNode
| NonNullTypeNode
| SchemaDefinitionNode
| OperationTypeDefinitionNode
| ScalarTypeDefinitionNode
| ObjectTypeDefinitionNode
| FieldDefinitionNode
| InputValueDefinitionNode
| InterfaceTypeDefinitionNode
| UnionTypeDefinitionNode
| EnumTypeDefinitionNode
| EnumValueDefinitionNode
| InputObjectTypeDefinitionNode
| DirectiveDefinitionNode
| SchemaExtensionNode
| ScalarTypeExtensionNode
| ObjectTypeExtensionNode
| InterfaceTypeExtensionNode
| UnionTypeExtensionNode
| EnumTypeExtensionNode
| InputObjectTypeExtensionNode
| NonNullAssertionNode
| ErrorBoundaryNode
| ListNullabilityOperatorNode;
/**
* Utility type listing all nodes indexed by their kind.
*/
export type ASTKindToNode = {
[NodeT in ASTNode as NodeT['kind']]: NodeT;
};
/**
* @internal
*/
export const QueryDocumentKeys: {
[NodeT in ASTNode as NodeT['kind']]: ReadonlyArray<keyof NodeT>;
} = {
Name: [],
Document: ['definitions'],
OperationDefinition: [
'name',
'variableDefinitions',
'directives',
'selectionSet',
],
VariableDefinition: ['variable', 'type', 'defaultValue', 'directives'],
Variable: ['name'],
SelectionSet: ['selections'],
Field: [
'alias',
'name',
'arguments',
'directives',
'selectionSet',
// Note: Client Controlled Nullability is experimental and may be changed
// or removed in the future.
'nullabilityAssertion',
],
Argument: ['name', 'value'],
// Note: Client Controlled Nullability is experimental and may be changed
// or removed in the future.
ListNullabilityOperator: ['nullabilityAssertion'],
NonNullAssertion: ['nullabilityAssertion'],
ErrorBoundary: ['nullabilityAssertion'],
FragmentSpread: ['name', 'directives'],
InlineFragment: ['typeCondition', 'directives', 'selectionSet'],
FragmentDefinition: [
'name',
// Note: fragment variable definitions are deprecated and will removed in v17.0.0
'variableDefinitions',
'typeCondition',
'directives',
'selectionSet',
],
IntValue: [],
FloatValue: [],
StringValue: [],
BooleanValue: [],
NullValue: [],
EnumValue: [],
ListValue: ['values'],
ObjectValue: ['fields'],
ObjectField: ['name', 'value'],
Directive: ['name', 'arguments'],
NamedType: ['name'],
ListType: ['type'],
NonNullType: ['type'],
SchemaDefinition: ['description', 'directives', 'operationTypes'],
OperationTypeDefinition: ['type'],
ScalarTypeDefinition: ['description', 'name', 'directives'],
ObjectTypeDefinition: [
'description',
'name',
'interfaces',
'directives',
'fields',
],
FieldDefinition: ['description', 'name', 'arguments', 'type', 'directives'],
InputValueDefinition: [
'description',
'name',
'type',
'defaultValue',
'directives',
],
InterfaceTypeDefinition: [
'description',
'name',
'interfaces',
'directives',
'fields',
],
UnionTypeDefinition: ['description', 'name', 'directives', 'types'],
EnumTypeDefinition: ['description', 'name', 'directives', 'values'],
EnumValueDefinition: ['description', 'name', 'directives'],
InputObjectTypeDefinition: ['description', 'name', 'directives', 'fields'],
DirectiveDefinition: ['description', 'name', 'arguments', 'locations'],
SchemaExtension: ['directives', 'operationTypes'],
ScalarTypeExtension: ['name', 'directives'],
ObjectTypeExtension: ['name', 'interfaces', 'directives', 'fields'],
InterfaceTypeExtension: ['name', 'interfaces', 'directives', 'fields'],
UnionTypeExtension: ['name', 'directives', 'types'],
EnumTypeExtension: ['name', 'directives', 'values'],
InputObjectTypeExtension: ['name', 'directives', 'fields'],
};
const kindValues = new Set<string>(Object.keys(QueryDocumentKeys));
/**
* @internal
*/
export function isNode(maybeNode: any): maybeNode is ASTNode {
const maybeKind = maybeNode?.kind;
return typeof maybeKind === 'string' && kindValues.has(maybeKind);
}
/** Name */
export interface NameNode {
readonly kind: Kind.NAME;
readonly loc?: Location | undefined;
readonly value: string;
}
/** Document */
export interface DocumentNode {
readonly kind: Kind.DOCUMENT;
readonly loc?: Location | undefined;
readonly definitions: ReadonlyArray<DefinitionNode>;
}
export type DefinitionNode =
| ExecutableDefinitionNode
| TypeSystemDefinitionNode
| TypeSystemExtensionNode;
export type ExecutableDefinitionNode =
| OperationDefinitionNode
| FragmentDefinitionNode;
export interface OperationDefinitionNode {
readonly kind: Kind.OPERATION_DEFINITION;
readonly loc?: Location | undefined;
readonly operation: OperationTypeNode;
readonly name?: NameNode | undefined;
readonly variableDefinitions?:
| ReadonlyArray<VariableDefinitionNode>
| undefined;
readonly directives?: ReadonlyArray<DirectiveNode> | undefined;
readonly selectionSet: SelectionSetNode;
}
export enum OperationTypeNode {
QUERY = 'query',
MUTATION = 'mutation',
SUBSCRIPTION = 'subscription',
}
export interface VariableDefinitionNode {
readonly kind: Kind.VARIABLE_DEFINITION;
readonly loc?: Location | undefined;
readonly variable: VariableNode;
readonly type: TypeNode;
readonly defaultValue?: ConstValueNode | undefined;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
}
export interface VariableNode {
readonly kind: Kind.VARIABLE;
readonly loc?: Location | undefined;
readonly name: NameNode;
}
export interface SelectionSetNode {
kind: Kind.SELECTION_SET;
loc?: Location | undefined;
selections: ReadonlyArray<SelectionNode>;
}
export type SelectionNode = FieldNode | FragmentSpreadNode | InlineFragmentNode;
export interface FieldNode {
readonly kind: Kind.FIELD;
readonly loc?: Location | undefined;
readonly alias?: NameNode | undefined;
readonly name: NameNode;
readonly arguments?: ReadonlyArray<ArgumentNode> | undefined;
// Note: Client Controlled Nullability is experimental
// and may be changed or removed in the future.
readonly nullabilityAssertion?: NullabilityAssertionNode | undefined;
readonly directives?: ReadonlyArray<DirectiveNode> | undefined;
readonly selectionSet?: SelectionSetNode | undefined;
}
export type NullabilityAssertionNode =
| NonNullAssertionNode
| ErrorBoundaryNode
| ListNullabilityOperatorNode;
export interface ListNullabilityOperatorNode {
readonly kind: Kind.LIST_NULLABILITY_OPERATOR;
readonly loc?: Location | undefined;
readonly nullabilityAssertion?: NullabilityAssertionNode | undefined;
}
export interface NonNullAssertionNode {
readonly kind: Kind.NON_NULL_ASSERTION;
readonly loc?: Location | undefined;
readonly nullabilityAssertion?: ListNullabilityOperatorNode | undefined;
}
export interface ErrorBoundaryNode {
readonly kind: Kind.ERROR_BOUNDARY;
readonly loc?: Location | undefined;
readonly nullabilityAssertion?: ListNullabilityOperatorNode | undefined;
}
export interface ArgumentNode {
readonly kind: Kind.ARGUMENT;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly value: ValueNode;
}
export interface ConstArgumentNode {
readonly kind: Kind.ARGUMENT;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly value: ConstValueNode;
}
/** Fragments */
export interface FragmentSpreadNode {
readonly kind: Kind.FRAGMENT_SPREAD;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<DirectiveNode> | undefined;
}
export interface InlineFragmentNode {
readonly kind: Kind.INLINE_FRAGMENT;
readonly loc?: Location | undefined;
readonly typeCondition?: NamedTypeNode | undefined;
readonly directives?: ReadonlyArray<DirectiveNode> | undefined;
readonly selectionSet: SelectionSetNode;
}
export interface FragmentDefinitionNode {
readonly kind: Kind.FRAGMENT_DEFINITION;
readonly loc?: Location | undefined;
readonly name: NameNode;
/** @deprecated variableDefinitions will be removed in v17.0.0 */
readonly variableDefinitions?:
| ReadonlyArray<VariableDefinitionNode>
| undefined;
readonly typeCondition: NamedTypeNode;
readonly directives?: ReadonlyArray<DirectiveNode> | undefined;
readonly selectionSet: SelectionSetNode;
}
/** Values */
export type ValueNode =
| VariableNode
| IntValueNode
| FloatValueNode
| StringValueNode
| BooleanValueNode
| NullValueNode
| EnumValueNode
| ListValueNode
| ObjectValueNode;
export type ConstValueNode =
| IntValueNode
| FloatValueNode
| StringValueNode
| BooleanValueNode
| NullValueNode
| EnumValueNode
| ConstListValueNode
| ConstObjectValueNode;
export interface IntValueNode {
readonly kind: Kind.INT;
readonly loc?: Location | undefined;
readonly value: string;
}
export interface FloatValueNode {
readonly kind: Kind.FLOAT;
readonly loc?: Location | undefined;
readonly value: string;
}
export interface StringValueNode {
readonly kind: Kind.STRING;
readonly loc?: Location | undefined;
readonly value: string;
readonly block?: boolean | undefined;
}
export interface BooleanValueNode {
readonly kind: Kind.BOOLEAN;
readonly loc?: Location | undefined;
readonly value: boolean;
}
export interface NullValueNode {
readonly kind: Kind.NULL;
readonly loc?: Location | undefined;
}
export interface EnumValueNode {
readonly kind: Kind.ENUM;
readonly loc?: Location | undefined;
readonly value: string;
}
export interface ListValueNode {
readonly kind: Kind.LIST;
readonly loc?: Location | undefined;
readonly values: ReadonlyArray<ValueNode>;
}
export interface ConstListValueNode {
readonly kind: Kind.LIST;
readonly loc?: Location | undefined;
readonly values: ReadonlyArray<ConstValueNode>;
}
export interface ObjectValueNode {
readonly kind: Kind.OBJECT;
readonly loc?: Location | undefined;
readonly fields: ReadonlyArray<ObjectFieldNode>;
}
export interface ConstObjectValueNode {
readonly kind: Kind.OBJECT;
readonly loc?: Location | undefined;
readonly fields: ReadonlyArray<ConstObjectFieldNode>;
}
export interface ObjectFieldNode {
readonly kind: Kind.OBJECT_FIELD;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly value: ValueNode;
}
export interface ConstObjectFieldNode {
readonly kind: Kind.OBJECT_FIELD;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly value: ConstValueNode;
}
/** Directives */
export interface DirectiveNode {
readonly kind: Kind.DIRECTIVE;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly arguments?: ReadonlyArray<ArgumentNode> | undefined;
}
export interface ConstDirectiveNode {
readonly kind: Kind.DIRECTIVE;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly arguments?: ReadonlyArray<ConstArgumentNode> | undefined;
}
/** Type Reference */
export type TypeNode = NamedTypeNode | ListTypeNode | NonNullTypeNode;
export interface NamedTypeNode {
readonly kind: Kind.NAMED_TYPE;
readonly loc?: Location | undefined;
readonly name: NameNode;
}
export interface ListTypeNode {
readonly kind: Kind.LIST_TYPE;
readonly loc?: Location | undefined;
readonly type: TypeNode;
}
export interface NonNullTypeNode {
readonly kind: Kind.NON_NULL_TYPE;
readonly loc?: Location | undefined;
readonly type: NamedTypeNode | ListTypeNode;
}
/** Type System Definition */
export type TypeSystemDefinitionNode =
| SchemaDefinitionNode
| TypeDefinitionNode
| DirectiveDefinitionNode;
export interface SchemaDefinitionNode {
readonly kind: Kind.SCHEMA_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly operationTypes: ReadonlyArray<OperationTypeDefinitionNode>;
}
export interface OperationTypeDefinitionNode {
readonly kind: Kind.OPERATION_TYPE_DEFINITION;
readonly loc?: Location | undefined;
readonly operation: OperationTypeNode;
readonly type: NamedTypeNode;
}
/** Type Definition */
export type TypeDefinitionNode =
| ScalarTypeDefinitionNode
| ObjectTypeDefinitionNode
| InterfaceTypeDefinitionNode
| UnionTypeDefinitionNode
| EnumTypeDefinitionNode
| InputObjectTypeDefinitionNode;
export interface ScalarTypeDefinitionNode {
readonly kind: Kind.SCALAR_TYPE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
}
export interface ObjectTypeDefinitionNode {
readonly kind: Kind.OBJECT_TYPE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly interfaces?: ReadonlyArray<NamedTypeNode> | undefined;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly fields?: ReadonlyArray<FieldDefinitionNode> | undefined;
}
export interface FieldDefinitionNode {
readonly kind: Kind.FIELD_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly arguments?: ReadonlyArray<InputValueDefinitionNode> | undefined;
readonly type: TypeNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
}
export interface InputValueDefinitionNode {
readonly kind: Kind.INPUT_VALUE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly type: TypeNode;
readonly defaultValue?: ConstValueNode | undefined;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
}
export interface InterfaceTypeDefinitionNode {
readonly kind: Kind.INTERFACE_TYPE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly interfaces?: ReadonlyArray<NamedTypeNode> | undefined;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly fields?: ReadonlyArray<FieldDefinitionNode> | undefined;
}
export interface UnionTypeDefinitionNode {
readonly kind: Kind.UNION_TYPE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly types?: ReadonlyArray<NamedTypeNode> | undefined;
}
export interface EnumTypeDefinitionNode {
readonly kind: Kind.ENUM_TYPE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly values?: ReadonlyArray<EnumValueDefinitionNode> | undefined;
}
export interface EnumValueDefinitionNode {
readonly kind: Kind.ENUM_VALUE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
}
export interface InputObjectTypeDefinitionNode {
readonly kind: Kind.INPUT_OBJECT_TYPE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly fields?: ReadonlyArray<InputValueDefinitionNode> | undefined;
}
/** Directive Definitions */
export interface DirectiveDefinitionNode {
readonly kind: Kind.DIRECTIVE_DEFINITION;
readonly loc?: Location | undefined;
readonly description?: StringValueNode | undefined;
readonly name: NameNode;
readonly arguments?: ReadonlyArray<InputValueDefinitionNode> | undefined;
readonly repeatable: boolean;
readonly locations: ReadonlyArray<NameNode>;
}
/** Type System Extensions */
export type TypeSystemExtensionNode = SchemaExtensionNode | TypeExtensionNode;
export interface SchemaExtensionNode {
readonly kind: Kind.SCHEMA_EXTENSION;
readonly loc?: Location | undefined;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly operationTypes?:
| ReadonlyArray<OperationTypeDefinitionNode>
| undefined;
}
/** Type Extensions */
export type TypeExtensionNode =
| ScalarTypeExtensionNode
| ObjectTypeExtensionNode
| InterfaceTypeExtensionNode
| UnionTypeExtensionNode
| EnumTypeExtensionNode
| InputObjectTypeExtensionNode;
export interface ScalarTypeExtensionNode {
readonly kind: Kind.SCALAR_TYPE_EXTENSION;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
}
export interface ObjectTypeExtensionNode {
readonly kind: Kind.OBJECT_TYPE_EXTENSION;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly interfaces?: ReadonlyArray<NamedTypeNode> | undefined;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly fields?: ReadonlyArray<FieldDefinitionNode> | undefined;
}
export interface InterfaceTypeExtensionNode {
readonly kind: Kind.INTERFACE_TYPE_EXTENSION;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly interfaces?: ReadonlyArray<NamedTypeNode> | undefined;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly fields?: ReadonlyArray<FieldDefinitionNode> | undefined;
}
export interface UnionTypeExtensionNode {
readonly kind: Kind.UNION_TYPE_EXTENSION;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly types?: ReadonlyArray<NamedTypeNode> | undefined;
}
export interface EnumTypeExtensionNode {
readonly kind: Kind.ENUM_TYPE_EXTENSION;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly values?: ReadonlyArray<EnumValueDefinitionNode> | undefined;
}
export interface InputObjectTypeExtensionNode {
readonly kind: Kind.INPUT_OBJECT_TYPE_EXTENSION;
readonly loc?: Location | undefined;
readonly name: NameNode;
readonly directives?: ReadonlyArray<ConstDirectiveNode> | undefined;
readonly fields?: ReadonlyArray<InputValueDefinitionNode> | undefined;
}