0

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.

cybersam
  • 63,203
  • 6
  • 53
  • 76
user697911
  • 10,043
  • 25
  • 95
  • 169

2 Answers2

0

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.

InverseFalcon
  • 29,576
  • 4
  • 38
  • 51
0

You can change what appears as the caption using a CSS (‘grass’) styleshert and the caption selector - see Edit or Create Graph Style Sheets for WebAdmin

wikitect
  • 437
  • 4
  • 12