Skip to content

Instantly share code, notes, and snippets.

@derryl
Created February 11, 2020 23:28
Show Gist options
  • Save derryl/e33b580d1ee13587f01063a41a0f8b6f to your computer and use it in GitHub Desktop.
Save derryl/e33b580d1ee13587f01063a41a0f8b6f to your computer and use it in GitHub Desktop.
sample edge dataset
{
"nodes": [
{
"id": 1,
"name": "TAG"
},
{
"id": 2,
"name": "PERSON"
},
{
"id": 3,
"name": "PRODUCT"
},
{
"id": 4,
"name": "BRAND"
},
{
"id": 5,
"name": "COLLECTION"
},
{
"id": 6,
"name": "EVENT"
}
],
"links": [
{
"source": 2,
"target": 1
},
{
"source": 3,
"target": 1
},
{
"source": 4,
"target": 1
},
{
"source": 5,
"target": 1
},
{
"source": 6,
"target": 1
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment