File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export type {
43
43
export {
44
44
resolveObjMapThunk ,
45
45
resolveReadonlyArrayThunk ,
46
+ // Definitions
46
47
GraphQLSchema ,
47
48
GraphQLDirective ,
48
49
GraphQLScalarType ,
@@ -53,14 +54,17 @@ export {
53
54
GraphQLInputObjectType ,
54
55
GraphQLList ,
55
56
GraphQLNonNull ,
57
+ // Standard GraphQL Scalars
56
58
specifiedScalarTypes ,
57
59
GraphQLInt ,
58
60
GraphQLFloat ,
59
61
GraphQLString ,
60
62
GraphQLBoolean ,
61
63
GraphQLID ,
64
+ // Int boundaries constants
62
65
GRAPHQL_MAX_INT ,
63
66
GRAPHQL_MIN_INT ,
67
+ // Built-in Directives defined by the Spec
64
68
specifiedDirectives ,
65
69
GraphQLIncludeDirective ,
66
70
GraphQLSkipDirective ,
@@ -69,8 +73,11 @@ export {
69
73
GraphQLDeprecatedDirective ,
70
74
GraphQLSpecifiedByDirective ,
71
75
GraphQLOneOfDirective ,
76
+ // "Enum" of Type Kinds
72
77
TypeKind ,
78
+ // Constant Deprecation Reason
73
79
DEFAULT_DEPRECATION_REASON ,
80
+ // GraphQL Types for introspection.
74
81
introspectionTypes ,
75
82
__Schema ,
76
83
__Directive ,
@@ -80,9 +87,11 @@ export {
80
87
__InputValue ,
81
88
__EnumValue ,
82
89
__TypeKind ,
90
+ // Meta-field definitions.
83
91
SchemaMetaFieldDef ,
84
92
TypeMetaFieldDef ,
85
93
TypeNameMetaFieldDef ,
94
+ // Predicates
86
95
isSchema ,
87
96
isDirective ,
88
97
isType ,
@@ -111,6 +120,7 @@ export {
111
120
isSpecifiedScalarType ,
112
121
isIntrospectionType ,
113
122
isSpecifiedDirective ,
123
+ // Assertions
114
124
assertSchema ,
115
125
assertDirective ,
116
126
assertType ,
@@ -134,10 +144,13 @@ export {
134
144
assertWrappingType ,
135
145
assertNullableType ,
136
146
assertNamedType ,
147
+ // Un-modifiers
137
148
getNullableType ,
138
149
getNamedType ,
150
+ // Validate GraphQL schema.
139
151
validateSchema ,
140
152
assertValidSchema ,
153
+ // Upholds the spec rules about naming.
141
154
assertName ,
142
155
assertEnumValueName ,
143
156
} from './type/index.js' ;
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export type {
19
19
export {
20
20
resolveObjMapThunk ,
21
21
resolveReadonlyArrayThunk ,
22
+ // Predicates
22
23
isType ,
23
24
isScalarType ,
24
25
isObjectType ,
@@ -42,6 +43,7 @@ export {
42
43
isNamedType ,
43
44
isRequiredArgument ,
44
45
isRequiredInputField ,
46
+ // Assertions
45
47
assertType ,
46
48
assertScalarType ,
47
49
assertObjectType ,
@@ -63,14 +65,17 @@ export {
63
65
assertWrappingType ,
64
66
assertNullableType ,
65
67
assertNamedType ,
68
+ // Un-modifiers
66
69
getNullableType ,
67
70
getNamedType ,
71
+ // Definitions
68
72
GraphQLScalarType ,
69
73
GraphQLObjectType ,
70
74
GraphQLInterfaceType ,
71
75
GraphQLUnionType ,
72
76
GraphQLEnumType ,
73
77
GraphQLInputObjectType ,
78
+ // Type Wrappers
74
79
GraphQLList ,
75
80
GraphQLNonNull ,
76
81
} from './definition.js' ;
You can’t perform that action at this time.
0 commit comments