Could I generate a graph from the following data, where the node "root" is the the node with label "V_ini" and it has edges with the different items of a given list "List":
V_ini=(0,0,0)
List=[(a,b,c),(1,0,1),(1,2,2)]
The expected result is a graph like that:
(0,0,0)->(a,b,c)
(0,0,0)->(1,0,1)
(0,0,0)->(1,2,2)