Skip to content

Instantly share code, notes, and snippets.

@luanpiegas
Last active July 7, 2018 00:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luanpiegas/83c7b1274bc50ac2f7571459f78592db to your computer and use it in GitHub Desktop.
Save luanpiegas/83c7b1274bc50ac2f7571459f78592db to your computer and use it in GitHub Desktop.
Sigma test nodes
{
"nodes": [
{
"id": "n0",
"label": "A node",
"x": 0,
"y": 0,
"size": 3
},
{
"id": "n1",
"label": "Another node",
"x": 3,
"y": 1,
"size": 2
},
{
"id": "n2",
"label": "And a last one",
"x": 1,
"y": 3,
"size": 1
}
],
"edges": [
{
"id": "e0",
"source": "n0",
"target": "n1"
},
{
"id": "e1",
"source": "n1",
"target": "n2"
},
{
"id": "e2",
"source": "n2",
"target": "n0"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment