Skip to content

Commit f5fb885

Browse files
JoviDeCroockyaacovCR
authored andcommitted
export all schema coordinate types
this was (afaict) correctly done in the backport of schema coordinates to 16.x.x (graphql#4463) but incorrect on next (graphql#3044)
1 parent f51bd22 commit f5fb885

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,13 @@ export type {
342342
UnionTypeExtensionNode,
343343
EnumTypeExtensionNode,
344344
InputObjectTypeExtensionNode,
345+
// Schema Coordinates
345346
SchemaCoordinateNode,
347+
TypeCoordinateNode,
348+
MemberCoordinateNode,
349+
ArgumentCoordinateNode,
350+
DirectiveCoordinateNode,
351+
DirectiveArgumentCoordinateNode,
346352
} from './language/index.js';
347353

348354
// Execute GraphQL queries.

src/language/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,13 @@ export type {
9696
UnionTypeExtensionNode,
9797
EnumTypeExtensionNode,
9898
InputObjectTypeExtensionNode,
99+
// Schema Coordinates
99100
SchemaCoordinateNode,
101+
TypeCoordinateNode,
102+
MemberCoordinateNode,
103+
ArgumentCoordinateNode,
104+
DirectiveCoordinateNode,
105+
DirectiveArgumentCoordinateNode,
100106
} from './ast.js';
101107

102108
export {

0 commit comments

Comments
 (0)