@@ -43,6 +43,7 @@ export type {
4343export {
4444 resolveObjMapThunk ,
4545 resolveReadonlyArrayThunk ,
46+ // Definitions
4647 GraphQLSchema ,
4748 GraphQLDirective ,
4849 GraphQLScalarType ,
@@ -53,14 +54,17 @@ export {
5354 GraphQLInputObjectType ,
5455 GraphQLList ,
5556 GraphQLNonNull ,
57+ // Standard GraphQL Scalars
5658 specifiedScalarTypes ,
5759 GraphQLInt ,
5860 GraphQLFloat ,
5961 GraphQLString ,
6062 GraphQLBoolean ,
6163 GraphQLID ,
64+ // Int boundaries constants
6265 GRAPHQL_MAX_INT ,
6366 GRAPHQL_MIN_INT ,
67+ // Built-in Directives defined by the Spec
6468 specifiedDirectives ,
6569 GraphQLIncludeDirective ,
6670 GraphQLSkipDirective ,
@@ -69,8 +73,11 @@ export {
6973 GraphQLDeprecatedDirective ,
7074 GraphQLSpecifiedByDirective ,
7175 GraphQLOneOfDirective ,
76+ // "Enum" of Type Kinds
7277 TypeKind ,
78+ // Constant Deprecation Reason
7379 DEFAULT_DEPRECATION_REASON ,
80+ // GraphQL Types for introspection.
7481 introspectionTypes ,
7582 __Schema ,
7683 __Directive ,
@@ -80,9 +87,11 @@ export {
8087 __InputValue ,
8188 __EnumValue ,
8289 __TypeKind ,
90+ // Meta-field definitions.
8391 SchemaMetaFieldDef ,
8492 TypeMetaFieldDef ,
8593 TypeNameMetaFieldDef ,
94+ // Predicates
8695 isSchema ,
8796 isDirective ,
8897 isType ,
@@ -111,6 +120,7 @@ export {
111120 isSpecifiedScalarType ,
112121 isIntrospectionType ,
113122 isSpecifiedDirective ,
123+ // Assertions
114124 assertSchema ,
115125 assertDirective ,
116126 assertType ,
@@ -134,10 +144,13 @@ export {
134144 assertWrappingType ,
135145 assertNullableType ,
136146 assertNamedType ,
147+ // Un-modifiers
137148 getNullableType ,
138149 getNamedType ,
150+ // Validate GraphQL schema.
139151 validateSchema ,
140152 assertValidSchema ,
153+ // Upholds the spec rules about naming.
141154 assertName ,
142155 assertEnumValueName ,
143156} from './type/index.js' ;
0 commit comments