Skip to content

Commit 62d9bbc

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

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

src/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,11 @@ export type {
343343
EnumTypeExtensionNode,
344344
InputObjectTypeExtensionNode,
345345
SchemaCoordinateNode,
346+
TypeCoordinateNode,
347+
MemberCoordinateNode,
348+
ArgumentCoordinateNode,
349+
DirectiveCoordinateNode,
350+
DirectiveArgumentCoordinateNode,
346351
} from './language/index.js';
347352

348353
// Execute GraphQL queries.

src/language/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ export type {
9797
EnumTypeExtensionNode,
9898
InputObjectTypeExtensionNode,
9999
SchemaCoordinateNode,
100+
TypeCoordinateNode,
101+
MemberCoordinateNode,
102+
ArgumentCoordinateNode,
103+
DirectiveCoordinateNode,
104+
DirectiveArgumentCoordinateNode,
100105
} from './ast.js';
101106

102107
export {

0 commit comments

Comments
 (0)