I have a sample graph, where it has two types of nodes, servers and services.
Server and properties looks like:
Server:{
"ip":"0.0.1.1"},
"location":"india",
"uptime":"120",
"services":["httpd","IPsec","irqbalance"],
}
Where the services is:
service:{
"service":"httpd"}
My connected graph looks like,
Servers are easily identified with the ip, but the services are not. I want to display service property on node. How to do that?