Skip to content

New Serialized Format

Compare
Choose a tag to compare
@curran curran released this 25 May 09:14
· 168 commits to master since this release

Serialized graphs now look like this:

{
  "nodes": [
    { "id": "a" },
    { "id": "b" },
    { "id": "c" }
  ],
  "links": [
    { "source": "a", "target": "b" },
    { "source": "b", "target": "c" }
  ]
}

See #9