@@ -138,15 +138,15 @@ type __Type {
138
138
name : String
139
139
description : String
140
140
# must be non-null for OBJECT and INTERFACE, otherwise null.
141
- fields (includeDeprecated : Boolean = false ): [__Field ! ]
141
+ fields (includeDeprecated : Boolean ! = false ): [__Field ! ]
142
142
# must be non-null for OBJECT and INTERFACE, otherwise null.
143
143
interfaces : [__Type ! ]
144
144
# must be non-null for INTERFACE and UNION, otherwise null.
145
145
possibleTypes : [__Type ! ]
146
146
# must be non-null for ENUM, otherwise null.
147
- enumValues (includeDeprecated : Boolean = false ): [__EnumValue ! ]
147
+ enumValues (includeDeprecated : Boolean ! = false ): [__EnumValue ! ]
148
148
# must be non-null for INPUT_OBJECT, otherwise null.
149
- inputFields (includeDeprecated : Boolean = false ): [__InputValue ! ]
149
+ inputFields (includeDeprecated : Boolean ! = false ): [__InputValue ! ]
150
150
# must be non-null for NON_NULL and LIST, otherwise null.
151
151
ofType : __Type
152
152
# may be non-null for custom SCALAR, otherwise null.
@@ -167,7 +167,7 @@ enum __TypeKind {
167
167
type __Field {
168
168
name : String !
169
169
description : String
170
- args (includeDeprecated : Boolean = false ): [__InputValue ! ]!
170
+ args (includeDeprecated : Boolean ! = false ): [__InputValue ! ]!
171
171
type : __Type !
172
172
isDeprecated : Boolean !
173
173
deprecationReason : String
@@ -193,7 +193,7 @@ type __Directive {
193
193
name : String !
194
194
description : String
195
195
locations : [__DirectiveLocation ! ]!
196
- args (includeDeprecated : Boolean = false ): [__InputValue ! ]!
196
+ args (includeDeprecated : Boolean ! = false ): [__InputValue ! ]!
197
197
isRepeatable : Boolean !
198
198
}
199
199
0 commit comments