I loaded my node.csv and edge.csv successfully to AWS Neptune.
I'm trying to display the vertices as an image accordingly to the corresponding label.
For example, there's an edge between 198.51.100.0 & adesai and 198.51.100.0 is also connecting to gramirez.
So, I would like to display a address.png for the IPAddress and a person.png for adesai & gramirez.
I'm using Gremlin lanugage and I have tried below but it's not working.
%%graph_notebook_vis_options<br>
{<br>
"nodes":{ "id":"0", "label": "User", "shape": "circularImage", "image": "person.png"},<br>
"nodes":{ "id":"1", "label": "User","shape": "circularImage", "image": "person.png"},<br>
"nodes":{ "id":"2", "label": "Restaurant","shape": "circularImage", "image": "restaurant.png"},<br>
"nodes":{ "id":"3", "label": "Restaurant","shape": "circularImage", "image": "restaurant.png"},<br>
"nodes":{ "id":"4", "label": "IPAddress","shape": "circularImage", "image": "address.png"}<br>
}
The nodes are just showing the same image. Can anyone advise? thank you