neo4jneo4j-browser

Why is only 'id' available for 'caption' when I only create labels?


For example, for this statement:

create (s:Student), (t:Teacher)

In Neo4j Browser, only ID is used as caption. Why doesn't 'Student' and "Teacher" show to be chosen as caption as well? I want to model the domain so I don't want to create instances.


Solution

  • For doing graphical modeling the domain, try using apoc.meta.graph() from APOC Procedures. It shows a graphical view of what labels are in your graph, and how nodes with those labels relate to each other via relationships. You just need a couple sample nodes in your graph with the appropriate labels and relationships.