Skip to content

Releases: datavis-tech/graph-data-structure

New Serialized Format

25 May 09:14
Compare
Choose a tag to compare

Serialized graphs now look like this:

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

See #9

Serialization

18 May 12:19
Compare
Choose a tag to compare
  • Add serialize and deserialize functions
  • Transfer ownership to datavis-tech