Show names against nodes in neo4j

Can someone tell me how to show the node name in the chart viewer in the same way as shown on the demo site: http://console.neo4j.org/

Here it shows Neo vs. node 1, not just node id. I create nodes through the admin interface - that is. not like in the example on the site at the top of the page called "Schedule Setting."

Thanks.

+4
source share
2 answers

To do this in the browser part of the admin interface data, you can customize the “styles”. Within the style, you can configure filters for certain types of nodes to have different styles and markers (circles, rectangles, font size). It's a little clumsy, but data can be used.

As an example, I took a screenshot from my chess base (I set the FEN position property as a node label): enter image description here

+4
source

A node does not have a name unless you give it a name property.

The graph viewer in the admin tool cannot show me anything except the node identifier.

I recommend Neoclipse , a tool that can be installed as a plugin in Eclipse or downloaded as a standalone program. It will display your nodes with a lot of details.

+2
source

All Articles