delete all nodes and relationships in neo4j code example
Example: neo4j delete relationship nodes
MATCH (n { tag_id: '792e93e4-84b2-47ba-8961-e284a04b272b' })-[r:Related_To]->()
DELETE r
MATCH (n { tag_id: '792e93e4-84b2-47ba-8961-e284a04b272b' })-[r:Related_To]->()
DELETE r