We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a390c26 commit 4a11adfCopy full SHA for 4a11adf
lib/query/lib/createGraph.js
@@ -146,7 +146,8 @@ export function getNodeNamespace(node) {
146
const parts = [];
147
let n = node;
148
while (n) {
149
- const name = n.linker ? n.linker.linkName : n.collection._name;
+ // links can now contain '.' (nested links)
150
+ const name = n.linker ? n.linker.linkName.replace(/\./, '_') : n.collection._name;
151
parts.push(name);
152
// console.log('linker', node.linker ? node.linker.linkName : node.collection._name);
153
n = n.parent;
0 commit comments