We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb813b3 commit 6557da1Copy full SHA for 6557da1
packages/graphqlsp/src/ast/declaration.ts
@@ -305,6 +305,8 @@ export function getValueOfIdentifier(
305
} else {
306
const value = getValueOfValueDeclaration(declaration);
307
if (value && ts.isIdentifier(value) && value !== node) {
308
+ // If the resolved value is another identifiers, we continue searching, if the
309
+ // identifier isn't self-referential
310
node = value;
311
312
return value;
0 commit comments