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 {
55
55
specifiedDirectives ,
56
56
GraphQLIncludeDirective ,
57
57
GraphQLSkipDirective ,
58
+ GraphQLDeferDirective ,
58
59
GraphQLDeprecatedDirective ,
59
60
// "Enum" of Type Kinds
60
61
TypeKind ,
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ export {
78
78
specifiedDirectives ,
79
79
GraphQLIncludeDirective ,
80
80
GraphQLSkipDirective ,
81
+ GraphQLDeferDirective ,
81
82
GraphQLDeprecatedDirective ,
82
83
// Constant Deprecation Reason
83
84
DEFAULT_DEPRECATION_REASON ,
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import {
11
11
GraphQLDirective ,
12
12
GraphQLIncludeDirective ,
13
13
GraphQLSkipDirective ,
14
+ GraphQLDeferDirective ,
14
15
} from '../../type/directives' ;
15
16
import {
16
17
GraphQLInt ,
@@ -362,6 +363,7 @@ export const testSchema = new GraphQLSchema({
362
363
directives : [
363
364
GraphQLIncludeDirective ,
364
365
GraphQLSkipDirective ,
366
+ GraphQLDeferDirective ,
365
367
new GraphQLDirective ( {
366
368
name : 'onQuery' ,
367
369
locations : [ 'QUERY' ] ,
You can’t perform that action at this time.
0 commit comments