For example I am using the following Cypher code to build my initial graph:
CREATE (forrestGump:Movie {title: 'Forrest Gump', released: 1994})
CREATE (robert:Person:Director {name: 'Robert Zemeckis', born: 1951})
CREATE (tom:Person:Actor {name: 'Tom Hanks', born: 1956})
CREATE (tom)—[:ACTED_IN {roles: ['Forrest']}]—>(forrestGump)
Over time more and more Cypher code added, more CREATE and MERGE commands.
How can I get all the steps that used to build my graph? I have tried CALL db.schema.visualization()
but it won't provide me with the steps above.
Please guide me how can I get the building steps?