File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -32,3 +32,7 @@ input InputType {
32
32
key : String !
33
33
answer : Int = 42
34
34
}
35
+
36
+ extend type Foo {
37
+ seven (argument : [String ]): Type
38
+ }
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ input InputType {
77
77
key: String!
78
78
answer: Int = 42
79
79
}
80
+
81
+ extend type Foo {
82
+ seven(argument: [String]): Type
83
+ }
80
84
` ) ;
81
85
82
86
} ) ;
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ import {
92
92
ENUM_VALUE_DEFINITION ,
93
93
INPUT_OBJECT_TYPE_DEFINITION ,
94
94
95
- TYPE_EXTENTION_DEFINITION ,
95
+ TYPE_EXTENSION_DEFINITION ,
96
96
} from './kinds' ;
97
97
98
98
@@ -893,7 +893,7 @@ function parseTypeExtensionDefinition(parser): TypeExtensionDefinition {
893
893
expectKeyword ( parser , 'extend' ) ;
894
894
var definition = parseObjectTypeDefinition ( parser ) ;
895
895
return {
896
- kind : TYPE_EXTENTION_DEFINITION ,
896
+ kind : TYPE_EXTENSION_DEFINITION ,
897
897
definition,
898
898
loc : loc ( parser , start ) ,
899
899
} ;
You can’t perform that action at this time.
0 commit comments