neo4j

Edge's weight in neo4j


I'm new in neo4j. I'm looking to construct my graph by displaying weights on relationship. Here is my command:

CREATE (origin)-[c:CONNECTED_TO { frequency: row[2] }]->(destination)

But I see just CONNECTED_TO.


Solution

  • Click on the type of relationship, and choose the property whose value will be displayed on the edge. Also, you can adjust color and size.

    [ http://neo4j.com/developer/guide-neo4j-browser/#_styling_neo4j_browser_visualization ]

    enter image description here