```graphviz test digraph G { graph [fontname = "Helvetica"]; node [fontname = "Helvetica" penwidth=0.2]; edge [fontname = "Helvetica" arrowsize="0.6" ]; splines="curved" subgraph workflow { penwidth=0; node [shape=rect style="rounded,dashed" penwidth=0.2]; aLongNamedThing [id="foo" style="rounded"] aLongNamedThing -> b -> anotherLongThing; d -> e -> anotherLongThing; } start -> aLongNamedThing; start -> d; anotherLongThing -> end;
start [shape=circle style="filled" fillcolor=orange height=".1"];
end [shape=circle style="filled" fillcolor=orange];
}
test
</details>