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?