File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ would return
56
56
}
57
57
```
58
58
59
+
59
60
## Reserved Names
60
61
61
62
Types and fields required by the GraphQL introspection system that are used in
@@ -99,6 +100,22 @@ identify which actual type of the possible types has been returned.
99
100
This field is implicit and does not appear in the fields list in any defined type.
100
101
101
102
103
+ ## Ordering
104
+
105
+ Servers must preserve lexical ordering between SDL and introspection.
106
+
107
+ For the given SDL:
108
+
109
+ ``` graphql
110
+ type MyType {
111
+ field1 (arg1 : String , arg2 : Int ): Boolean
112
+ field2 : Boolean
113
+ }
114
+ ```
115
+
116
+ The introspection result must produce an ordered array of fields `[field1 , field2 ]` for `MyType `
117
+ and an ordered array of arguments `[arg1 , arg2 ]` for `MyType .field1 .
118
+
102
119
## Schema Introspection
103
120
104
121
The schema introspection system is accessible from the meta-fields `__schema`
You can’t perform that action at this time.
0 commit comments