@@ -125,7 +125,7 @@ export {
125
125
// Validate GraphQL schema.
126
126
validateSchema ,
127
127
assertValidSchema ,
128
- } from './type' ;
128
+ } from './type/index ' ;
129
129
130
130
export type {
131
131
GraphQLType ,
@@ -168,7 +168,7 @@ export type {
168
168
GraphQLScalarSerializer ,
169
169
GraphQLScalarValueParser ,
170
170
GraphQLScalarLiteralParser ,
171
- } from './type' ;
171
+ } from './type/index ' ;
172
172
173
173
// Parse and operate on GraphQL language source files.
174
174
export {
@@ -204,7 +204,7 @@ export {
204
204
isTypeDefinitionNode ,
205
205
isTypeSystemExtensionNode ,
206
206
isTypeExtensionNode ,
207
- } from './language' ;
207
+ } from './language/index ' ;
208
208
209
209
export type {
210
210
ParseOptions ,
@@ -276,7 +276,7 @@ export type {
276
276
UnionTypeExtensionNode ,
277
277
EnumTypeExtensionNode ,
278
278
InputObjectTypeExtensionNode ,
279
- } from './language' ;
279
+ } from './language/index ' ;
280
280
281
281
// Execute GraphQL queries.
282
282
export {
@@ -285,12 +285,12 @@ export {
285
285
defaultTypeResolver ,
286
286
responsePathAsArray ,
287
287
getDirectiveValues ,
288
- } from './execution' ;
288
+ } from './execution/index ' ;
289
289
290
- export type { ExecutionArgs , ExecutionResult } from './execution' ;
290
+ export type { ExecutionArgs , ExecutionResult } from './execution/index ' ;
291
291
292
- export { subscribe , createSourceEventStream } from './subscription' ;
293
- export type { SubscriptionArgs } from './subscription' ;
292
+ export { subscribe , createSourceEventStream } from './subscription/index ' ;
293
+ export type { SubscriptionArgs } from './subscription/index ' ;
294
294
295
295
// Validate GraphQL documents.
296
296
export {
@@ -324,9 +324,9 @@ export {
324
324
ValuesOfCorrectTypeRule ,
325
325
VariablesAreInputTypesRule ,
326
326
VariablesInAllowedPositionRule ,
327
- } from './validation' ;
327
+ } from './validation/index ' ;
328
328
329
- export type { ValidationRule } from './validation' ;
329
+ export type { ValidationRule } from './validation/index ' ;
330
330
331
331
// Create, format, and print GraphQL errors.
332
332
export {
@@ -335,9 +335,9 @@ export {
335
335
locatedError ,
336
336
printError ,
337
337
formatError ,
338
- } from './error' ;
338
+ } from './error/index ' ;
339
339
340
- export type { GraphQLFormattedError } from './error' ;
340
+ export type { GraphQLFormattedError } from './error/index ' ;
341
341
342
342
// Utilities for operating on GraphQL type schema and parsed sources.
343
343
export {
@@ -406,7 +406,7 @@ export {
406
406
findDangerousChanges ,
407
407
// Report all deprecated usage within a GraphQL document.
408
408
findDeprecatedUsages ,
409
- } from './utilities' ;
409
+ } from './utilities/index ' ;
410
410
411
411
export type {
412
412
IntrospectionOptions ,
@@ -434,4 +434,4 @@ export type {
434
434
BuildSchemaOptions ,
435
435
BreakingChange ,
436
436
DangerousChange ,
437
- } from './utilities' ;
437
+ } from './utilities/index ' ;
0 commit comments