We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44768a8 commit 980bdf4Copy full SHA for 980bdf4
src/index.js
@@ -51,6 +51,7 @@ export {
51
GraphQLInputObjectType,
52
GraphQLList,
53
GraphQLNonNull,
54
+ GraphQLDirective,
55
56
// Scalars
57
GraphQLInt,
@@ -59,6 +60,10 @@ export {
59
60
GraphQLBoolean,
61
GraphQLID,
62
63
+ // Built-in Directives
64
+ GraphQLIncludeDirective,
65
+ GraphQLSkipDirective,
66
+
67
// Predicates
68
isType,
69
isInputType,
src/type/index.js
@@ -35,6 +35,15 @@ export {
35
36
} from './definition';
37
38
+export {
39
+ // Directives Definition
40
41
42
43
44
45
+} from './directives';
46
47
// Common built-in scalar instances.
48
export {
49
0 commit comments