When I delete a Node, Relationship in Java executing Cypher:
MATCH (n { name: 'Andres' })-[r]-() DELETE n, r
or
DELETE (n) where id(n)=3;
is there a way to keep track of the Nodes, Relationships I've deleted? Getting the Id or the Object(Node/Rs).