File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,12 @@ export {
53
53
GraphQLNonNull ,
54
54
GraphQLDirective ,
55
55
56
+ // "Enum" of Type Kinds
57
+ TypeKind ,
58
+
59
+ // "Enum" of Directive Locations
60
+ DirectiveLocation ,
61
+
56
62
// Scalars
57
63
GraphQLInt ,
58
64
GraphQLFloat ,
@@ -64,6 +70,21 @@ export {
64
70
GraphQLIncludeDirective ,
65
71
GraphQLSkipDirective ,
66
72
73
+ // Meta-field definitions.
74
+ SchemaMetaFieldDef ,
75
+ TypeMetaFieldDef ,
76
+ TypeNameMetaFieldDef ,
77
+
78
+ // GraphQL Types for introspection.
79
+ __Schema ,
80
+ __Directive ,
81
+ __DirectiveLocation ,
82
+ __Type ,
83
+ __Field ,
84
+ __InputValue ,
85
+ __EnumValue ,
86
+ __TypeKind ,
87
+
67
88
// Predicates
68
89
isType ,
69
90
isInputType ,
Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ export {
36
36
} from './definition' ;
37
37
38
38
export {
39
+ // "Enum" of Directive Locations
40
+ DirectiveLocation ,
41
+
39
42
// Directives Definition
40
43
GraphQLDirective ,
41
44
@@ -52,3 +55,23 @@ export {
52
55
GraphQLBoolean ,
53
56
GraphQLID ,
54
57
} from './scalars' ;
58
+
59
+ export {
60
+ // "Enum" of Type Kinds
61
+ TypeKind ,
62
+
63
+ // GraphQL Types for introspection.
64
+ __Schema ,
65
+ __Directive ,
66
+ __DirectiveLocation ,
67
+ __Type ,
68
+ __Field ,
69
+ __InputValue ,
70
+ __EnumValue ,
71
+ __TypeKind ,
72
+
73
+ // Meta-field definitions.
74
+ SchemaMetaFieldDef ,
75
+ TypeMetaFieldDef ,
76
+ TypeNameMetaFieldDef ,
77
+ } from './introspection' ;
You can’t perform that action at this time.
0 commit comments