[Neo4j] Another issue with Neo4j.py

2010-08-19 Thread Dan Gould
I'm trying to delete all the nodes in my graph. I iterate over all relationships and delete them successfully. Then I iterate over all the nodes and delete them (all node deletion is one transaction). Every once in awhile, I get: in node.delete() File

Re: [Neo4j] Another issue with Neo4j.py

2010-08-19 Thread Mattias Persson
Maybe you're deleting a node which still has relationships left? All relationships on deleted nodes must be deleted in the same transaction. 2010/8/19 Dan Gould d...@dangould.com I'm trying to delete all the nodes in my graph. I iterate over all relationships and delete them successfully.