Deleting all nodes and relationships in neo4j using cypher exceeds heap space

后端 未结 6 1605
失恋的感觉
失恋的感觉 2021-02-05 20:50

I have been trying to run this query as recommended in the neo4j google group and in other sources online:

START n = node(*) MATCH n-[r?]-() WHERE ID(n)>0 DELETE n, r;

6条回答
  •  悲&欢浪女
    2021-02-05 20:59

    The Question mark does not work anymore. Use Optional Match..the below should work.

                   START n = node(*) 
                   OPTIONAL MATCH n-[r]-() 
                   WHERE (ID(n)>0 AND ID(n)<10000) 
                   DELETE n, r;
    

提交回复
热议问题