File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ export {
51
51
GraphQLInputObjectType ,
52
52
GraphQLList ,
53
53
GraphQLNonNull ,
54
+ GraphQLDirective ,
54
55
55
56
// Scalars
56
57
GraphQLInt ,
@@ -59,6 +60,10 @@ export {
59
60
GraphQLBoolean ,
60
61
GraphQLID ,
61
62
63
+ // Built-in Directives
64
+ GraphQLIncludeDirective ,
65
+ GraphQLSkipDirective ,
66
+
62
67
// Predicates
63
68
isType ,
64
69
isInputType ,
Original file line number Diff line number Diff line change @@ -35,6 +35,15 @@ export {
35
35
GraphQLNonNull ,
36
36
} from './definition' ;
37
37
38
+ export {
39
+ // Directives Definition
40
+ GraphQLDirective ,
41
+
42
+ // Built-in Directives
43
+ GraphQLIncludeDirective ,
44
+ GraphQLSkipDirective ,
45
+ } from './directives' ;
46
+
38
47
// Common built-in scalar instances.
39
48
export {
40
49
GraphQLInt ,
You can’t perform that action at this time.
0 commit comments