I'm using amcharts force directed network to render a knowledge graph. In this knowledge graph two nodes can have multiple edges in each direction.
For example:
A "person" can be "born in" a city.
Also,
A "person" can "live in" a city.
From reading the documentation, I can make links between the edges using "linkWith", but I can't add a "type" and add more links.
Example of two nodes with two link types
Here is a sample of the json file:
{
"id": "200",
"type": "City",
"name": "New York",
"color": "#2CB186",
"linkWith": [{
"115": ["born_in", "lives_in"]
}]
}