File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ export {
5555 specifiedDirectives ,
5656 GraphQLIncludeDirective ,
5757 GraphQLSkipDirective ,
58+ GraphQLDeferDirective ,
5859 GraphQLDeprecatedDirective ,
5960 // "Enum" of Type Kinds
6061 TypeKind ,
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ export {
7878 specifiedDirectives ,
7979 GraphQLIncludeDirective ,
8080 GraphQLSkipDirective ,
81+ GraphQLDeferDirective ,
8182 GraphQLDeprecatedDirective ,
8283 // Constant Deprecation Reason
8384 DEFAULT_DEPRECATION_REASON ,
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import {
1111 GraphQLDirective ,
1212 GraphQLIncludeDirective ,
1313 GraphQLSkipDirective ,
14+ GraphQLDeferDirective ,
1415} from '../../type/directives' ;
1516import {
1617 GraphQLInt ,
@@ -362,6 +363,7 @@ export const testSchema = new GraphQLSchema({
362363 directives : [
363364 GraphQLIncludeDirective ,
364365 GraphQLSkipDirective ,
366+ GraphQLDeferDirective ,
365367 new GraphQLDirective ( {
366368 name : 'onQuery' ,
367369 locations : [ 'QUERY' ] ,
You can’t perform that action at this time.
0 commit comments