Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am copying part of my Main Neo4j Graph(mainDB) into another Graph (dupDB), while doing so how can I create a Node in dupDB that has similar properties as one in mainDB.

I would do

Node main = mainDB.getNodeByID(477);
Node dup = dupDB.createNode();

Now I have to copy each property in main to dup manually, is there any one-line method to do this?

share|improve this question
Are you just duplicating the node and the properties or even its relationships, e.g. a subgraph? Generally, do the copying by looping over the props, with Cypher you could use one map as a parameter to insert it, see docs.neo4j.org/chunked/snapshot/… – Peter Neubauer Jul 2 '12 at 10:18
Only properties. Anyway I had copied them manually, was just curious if there was a direct method. – Sravan Jul 3 '12 at 13:01
1  
no there isn't. – Michael Hunger Jul 6 '12 at 11:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.