Skip to content

Commit e274c76

Browse files
committed
update the order of fields to match graphql-js
1 parent d05591b commit e274c76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/Section 4 -- Introspection.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

156156
enum __TypeKind {
@@ -192,9 +192,9 @@ type __EnumValue {
192192
type __Directive {
193193
name: String!
194194
description: String
195+
isRepeatable: Boolean!
195196
locations: [__DirectiveLocation!]!
196197
args(includeDeprecated: Boolean! = false): [__InputValue!]!
197-
isRepeatable: Boolean!
198198
}
199199

200200
enum __DirectiveLocation {

0 commit comments

Comments
 (0)