Re: [Neo4j] Copying nodes/rels from one graph to another

2014-08-06 Thread Michael Hunger
There is really none, you'd have to do it manually. I have some code similar to that in this tool: https://github.com/jexp/store-utils/tree/20 The master branch on 1.9 still uses the transactional API for reading the data. The 20 branch uses the batch-inserter-api for both. Michael On Wed, Aug

[Neo4j] Copying nodes/rels from one graph to another

2014-08-06 Thread Alireza Rezaei Mahdiraji
Hi All, I would like to create a new graph G' using a subset of nodes and relations from an existing graph G. I have access to nodes and rels of G, should I create new nodes in G' and copy all properties of G node into it? I could not find any method which allow adding an existing node to a