From the box there will be an arrow pointing to another arrow's tail then position the diamond like that. I've been trying to use the pos attribute but it's not working. Is this possible in Graphviz?
I've been trying to adjust the shapes to another position but no luck in doing so. I've attached the image on the link.
digraph {
SlowJobID [label="Slow Job ID" shape=rectangle color=black]
FastJobID [label="Fast Job ID" shape=rectangle color=black]
KnownIssue [label="Known Issue?" shape=diamond]
Interpret [label="Interpret Timing Details by expanding Timing Tab in Google Admin" shape=rect]
Review [label="Review existing OMGs for BigQuery" shape=rectangle]
Long [label="Long creation time?" shape=diamond]
node[ shape = square ];
{ rank = same; SlowJobID FastJobID}
{ rank = same; KnownIssue Review}
SlowJobID -> FastJobID [arrowhead=none label= " "];
SlowJobID -> KnownIssue [arrowhead=none];
KnownIssue -> Interpret [label=" No "];
KnownIssue -> Review [label="Yes "];
Interpret -> Long
}

{}of the edit line, encapsulateting it in a pair of ` ``` ` or indenting all the code with 4 spaces).