+1 vote
in Databases by (56.8k points)
I want to delete all relationships present in a Neo4j graph. Is there any cypher query to do this?

1 Answer

+2 votes
by (351k points)
selected by
 
Best answer

To delete all the relationship types in a neo4j graph, you can run the following cypher query on the neo4j desktop browser.

match ()-[r]-() delete r;

 


...