Skip to content

Commit 6136baa

Browse files
committed
fixes
1 parent d1a40e1 commit 6136baa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/graphql-estree/src/converter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const convertNode = (typeInfo?: TypeInfo) => <T extends ASTNode>(
7979
...typeFieldSafe,
8080
...commonFields,
8181
type: node.kind,
82-
// rawNode: () => node,
82+
rawNode: () => node,
8383
gqlLocation: stripTokens(gqlLocation),
8484
} as any) as GraphQLESTreeNode<T>;
8585

@@ -93,7 +93,7 @@ const convertNode = (typeInfo?: TypeInfo) => <T extends ASTNode>(
9393
...typeFieldSafe,
9494
...commonFields,
9595
type: node.kind,
96-
// rawNode: () => node,
96+
rawNode: () => node,
9797
gqlLocation: stripTokens(gqlLocation),
9898
} as any) as GraphQLESTreeNode<T>;
9999

0 commit comments

Comments
 (0)