@@ -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 } ,
@@ -266,7 +266,7 @@ export const __Type: GraphQLObjectType = new GraphQLObjectType({
266266 type : new GraphQLList ( new GraphQLNonNull ( __Field ) ) ,
267267 args : {
268268 includeDeprecated : {
269- type : GraphQLBoolean ,
269+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
270270 default : { value : false } ,
271271 } ,
272272 } ,
@@ -299,7 +299,7 @@ export const __Type: GraphQLObjectType = new GraphQLObjectType({
299299 type : new GraphQLList ( new GraphQLNonNull ( __EnumValue ) ) ,
300300 args : {
301301 includeDeprecated : {
302- type : GraphQLBoolean ,
302+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
303303 default : { value : false } ,
304304 } ,
305305 } ,
@@ -316,7 +316,7 @@ export const __Type: GraphQLObjectType = new GraphQLObjectType({
316316 type : new GraphQLList ( new GraphQLNonNull ( __InputValue ) ) ,
317317 args : {
318318 includeDeprecated : {
319- type : GraphQLBoolean ,
319+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
320320 default : { value : false } ,
321321 } ,
322322 } ,
@@ -364,7 +364,7 @@ export const __Field: GraphQLObjectType = new GraphQLObjectType({
364364 ) ,
365365 args : {
366366 includeDeprecated : {
367- type : GraphQLBoolean ,
367+ type : new GraphQLNonNull ( GraphQLBoolean ) ,
368368 default : { value : false } ,
369369 } ,
370370 } ,
0 commit comments