File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,8 @@ type __Type {
137
137
kind : __TypeKind !
138
138
name : String
139
139
description : String
140
+ # may be non-null for custom SCALAR, otherwise null.
141
+ specifiedByURL : String
140
142
# must be non-null for OBJECT and INTERFACE, otherwise null.
141
143
fields (includeDeprecated : Boolean ! = false ): [__Field ! ]
142
144
# must be non-null for OBJECT and INTERFACE, otherwise null.
@@ -149,8 +151,6 @@ type __Type {
149
151
inputFields (includeDeprecated : Boolean ! = false ): [__InputValue ! ]
150
152
# must be non-null for NON_NULL and LIST, otherwise null.
151
153
ofType : __Type
152
- # may be non-null for custom SCALAR, otherwise null.
153
- specifiedByURL : String
154
154
}
155
155
156
156
enum __TypeKind {
@@ -192,9 +192,9 @@ type __EnumValue {
192
192
type __Directive {
193
193
name : String !
194
194
description : String
195
+ isRepeatable : Boolean !
195
196
locations : [__DirectiveLocation ! ]!
196
197
args (includeDeprecated : Boolean ! = false ): [__InputValue ! ]!
197
- isRepeatable : Boolean !
198
198
}
199
199
200
200
enum __DirectiveLocation {
You can’t perform that action at this time.
0 commit comments