mirror of
https://github.com/status-im/whispervis.git
synced 2025-02-10 20:26:52 +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
|
|
}
|
|
]
|
|
};
|