cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Cypher Query to get graph data model

madiskou
Graph Buddy

Hello,

I want to ask if we can have a query which return the graph data model
i mean nodes with relations (it will be helpfull to understand/explain the data model)

Thank you

1 ACCEPTED SOLUTION

There are a few builtin procedures that give you information about the model.

db.schema.visualization()
db.schema.nodeTypeProperties()
db.schema.relPropertyTypess()
db.propertyKeys()
db.relationshipTypes()

View solution in original post

1 REPLY 1

There are a few builtin procedures that give you information about the model.

db.schema.visualization()
db.schema.nodeTypeProperties()
db.schema.relPropertyTypess()
db.propertyKeys()
db.relationshipTypes()