mirror of
https://github.com/status-im/clusterviz.git
synced 2025-02-21 17:38:04 +00:00
20 lines
228 B
JavaScript
20 lines
228 B
JavaScript
var graphData = {
|
|
"nodes": [
|
|
{
|
|
"id": "Foo",
|
|
"group": 1
|
|
},
|
|
{
|
|
"id": "Bar",
|
|
"group": 1
|
|
}
|
|
],
|
|
"links": [
|
|
{
|
|
"source": "Foo",
|
|
"target": "Bar",
|
|
"value": 1
|
|
}
|
|
]
|
|
};
|