I'm currently utilizing the amcharts force directed network to display a knowledge graph. Within this knowledge graph, it's possible for two nodes to have multiple edges in both directions.
For instance:
A "person" could be linked as "born in" a city
Furthermore,
A "person" could also be connected as "live in" a city.
After reviewing the documentation, I found that I can create connections between edges using "linkWith", however, I'm unable to specify a "type" and include additional links.
View an example of two nodes with two link types here
Below is a snippet from the json file:
{
"id": "200",
"type": "City",
"name": "New York",
"color": "#2CB186",
"linkWith": [{
"115": ["born_in", "lives_in"]
}]
}