@@ -107,7 +107,7 @@ export const __Directive: GraphQLObjectType = new GraphQLObjectType({
107107 ) ,
108108 args : {
109109 includeDeprecated : {
110- type : GraphQLBoolean ,
110+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
111111 default : { value : false } ,
112112 } ,
113113 } ,
@@ -265,7 +265,7 @@ export const __Type: GraphQLObjectType = new GraphQLObjectType({
265265 type : new GraphQLList ( new GraphQLNonNull ( __Field ) ) ,
266266 args : {
267267 includeDeprecated : {
268- type : GraphQLBoolean ,
268+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
269269 default : { value : false } ,
270270 } ,
271271 } ,
@@ -298,7 +298,7 @@ export const __Type: GraphQLObjectType = new GraphQLObjectType({
298298 type : new GraphQLList ( new GraphQLNonNull ( __EnumValue ) ) ,
299299 args : {
300300 includeDeprecated : {
301- type : GraphQLBoolean ,
301+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
302302 default : { value : false } ,
303303 } ,
304304 } ,
@@ -315,7 +315,7 @@ export const __Type: GraphQLObjectType = new GraphQLObjectType({
315315 type : new GraphQLList ( new GraphQLNonNull ( __InputValue ) ) ,
316316 args : {
317317 includeDeprecated : {
318- type : GraphQLBoolean ,
318+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
319319 default : { value : false } ,
320320 } ,
321321 } ,
@@ -363,7 +363,7 @@ export const __Field: GraphQLObjectType = new GraphQLObjectType({
363363 ) ,
364364 args : {
365365 includeDeprecated : {
366- type : GraphQLBoolean ,
366+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
367367 default : { value : false } ,
368368 } ,
369369 } ,
0 commit comments