create-graph-from-datatable
Last updated
{
"nodes": [
{ "id": "A" },
{ "id": "B" },
{ "id": "C" },
{ "id": "D" }
],
"edges": [
{ "id": "edge-1", "from": "A", "to": "B", "direction": "none", "attributes": {} },
{ "id": "edge-2", "from": "B", "to": "C", "direction": "none", "attributes": {} },
{ "id": "edge-3", "from": "C", "to": "A", "direction": "none", "attributes": {} },
{ "id": "edge-4", "from": "C", "to": "D", "direction": "none", "attributes": {} }
]
} {
"nodes": [
{ "id": "A" },
{ "id": "B" },
{ "id": "C" },
{ "id": "D" }
],
"edges": [
{ "id": "edge-1", "from": "A", "to": "B", "direction": "forward", "attributes": {} },
{ "id": "edge-2", "from": "B", "to": "C", "direction": "forward", "attributes": {} },
{ "id": "edge-3", "from": "C", "to": "A", "direction": "forward", "attributes": {} },
{ "id": "edge-4", "from": "C", "to": "D", "direction": "forward", "attributes": {} }
]
}