You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While it is able to avoid name conflicts by using text, but It's hard to consider another id name. How about targeting nodes by chaining the name of the subgraph(s)?
flowchart LR
subgraph subgraph1
node
end
subgraph subgraph2
node
end
subgraph1.node --> subgraph2.node
result:
flowchart LR
subgraph subgraph1
node1["node"]
end
subgraph subgraph2
node2["node"]
end
node1 --> node2
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
While it is able to avoid name conflicts by using text, but It's hard to consider another id name. How about targeting nodes by chaining the name of the subgraph(s)?
result:
Beta Was this translation helpful? Give feedback.
All reactions