@@ -132,31 +132,31 @@ type __Type {
132
132
name : String
133
133
description : String
134
134
"""
135
- must be non-null for OBJECT and INTERFACE, otherwise null.
135
+ Must be non-null for OBJECT and INTERFACE, otherwise null.
136
136
"""
137
137
fields (includeDeprecated : Boolean = false ): [__Field ! ]
138
138
"""
139
- must be non-null for OBJECT and INTERFACE, otherwise null.
139
+ Must be non-null for OBJECT and INTERFACE, otherwise null.
140
140
"""
141
141
interfaces : [__Type ! ]
142
142
"""
143
- must be non-null for INTERFACE and UNION, otherwise null.
143
+ Must be non-null for INTERFACE and UNION, otherwise null.
144
144
"""
145
145
possibleTypes : [__Type ! ]
146
146
"""
147
- must be non-null for ENUM, otherwise null.
147
+ Must be non-null for ENUM, otherwise null.
148
148
"""
149
149
enumValues (includeDeprecated : Boolean = false ): [__EnumValue ! ]
150
150
"""
151
- must be non-null for INPUT_OBJECT, otherwise null.
151
+ Must be non-null for INPUT_OBJECT, otherwise null.
152
152
"""
153
153
inputFields (includeDeprecated : Boolean = false ): [__InputValue ! ]
154
154
"""
155
- must be non-null for NON_NULL and LIST, otherwise null.
155
+ Must be non-null for NON_NULL and LIST, otherwise null.
156
156
"""
157
157
ofType : __Type
158
158
"""
159
- may be non-null for custom SCALAR, otherwise null.
159
+ May be non-null for custom SCALAR, otherwise null.
160
160
"""
161
161
specifiedByURL : String
162
162
}
0 commit comments