You can time travel in you graph databases and see the commit history
client.query('HISTORY')
# client.set_graph("my-graph") client.checkout(change="main", commit="c0a6ce3c0315be7a") client.query('MATCH (n:Person {Name:"Jane"})-[e:knows]-(m:Person {Name:"John"}) RETURN n, e, m')