Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion modules/ROOT/pages/reference/procedures.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,10 @@ For more information, see the link:{neo4j-docs-base-uri}/cypher-manual/{page-ver
|===
| Description
a|
Visualize the schema of the data.
Visualizes the schema of the data based on available statistics. A new node is returned for each label.
The properties represented on the node include `name` (label name), `indexes` (list of indexes), and `constraints` (list of constraints).
A relationship of a given type is returned for all possible combinations of start and end nodes.
Note that this may include additional relationships that do not exist in the data due to the information available in the count store.
| Signature
m|db.schema.visualization() :: (nodes :: LIST<NODE>, relationships :: LIST<RELATIONSHIP>)
| Mode
Expand Down