···11+---
22+'@0no-co/graphqlsp': patch
33+---
44+55+Support property-access-chain in binary-expression assignment
+5-1
packages/graphqlsp/src/ast/index.ts
···8181 } else if (ts.isPropertyAssignment(found.parent)) {
8282 found = found.parent.initializer;
8383 } else if (ts.isBinaryExpression(found.parent)) {
8484- found = found.parent.right;
8484+ if (ts.isPropertyAccessExpression(found.parent.right)) {
8585+ found = found.parent.right.name as ts.Identifier;
8686+ } else {
8787+ found = found.parent.right;
8888+ }
8589 }
86908791 // If we found another identifier, we repeat trying to find the original