I'd like to point to a sub graph where the line stops on the edge. From what I understand I can select any of the nodes in the sub graph. Is there a way to create an invisible node that you can point to?
digraph G {
compound=true;
subgraph cluster_a{
label="node1";
node1;
}
node2->node1 [lhead=cluster_a];
}
Ideally node1 should not be visible