This will allow the user to lookup the edge between the two vertices and modify it. ```groovy preOrder('A') { from, to -> from.fillcolor = 'green' to.fillcolor = 'green' edge(from.key, to.key) { color = 'green' } } ```
This will allow the user to lookup the edge between the two vertices and modify it.