File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -137,6 +137,8 @@ type __Type {
137137 kind : __TypeKind !
138138 name : String
139139 description : String
140+ # may be non-null for custom SCALAR, otherwise null.
141+ specifiedByURL : String
140142 # must be non-null for OBJECT and INTERFACE, otherwise null.
141143 fields (includeDeprecated : Boolean ! = false ): [__Field ! ]
142144 # must be non-null for OBJECT and INTERFACE, otherwise null.
@@ -149,8 +151,6 @@ type __Type {
149151 inputFields (includeDeprecated : Boolean ! = false ): [__InputValue ! ]
150152 # must be non-null for NON_NULL and LIST, otherwise null.
151153 ofType : __Type
152- # may be non-null for custom SCALAR, otherwise null.
153- specifiedByURL : String
154154}
155155
156156enum __TypeKind {
@@ -192,9 +192,9 @@ type __EnumValue {
192192type __Directive {
193193 name : String !
194194 description : String
195+ isRepeatable : Boolean !
195196 locations : [__DirectiveLocation ! ]!
196197 args (includeDeprecated : Boolean ! = false ): [__InputValue ! ]!
197- isRepeatable : Boolean !
198198}
199199
200200enum __DirectiveLocation {
You can’t perform that action at this time.
0 commit comments