So when i remove the grey node, the green, pink and darkgreen nodes will be deleted as well.
I tried:
session.delete(thisnode.class, id, 5)
And a cypher solution is fine too, this didnt work either:
MATCH (n:thisnode)--(e) DETACH DELETE n,e;
What wo...