Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
06-25-2021 03:49 AM
Dear All,
I need to clone Node object in Java. I am using org.neo4j.graphdb.* library. Have gone through the documentation. Have found a way to clone Nodes in cypher, but am not able to do it in JAVA. Any help will be deeply appreciated.
Regards
Ankit
07-02-2021 04:09 PM
Something like this?
Node a = ...
Node b = tx.createNode(a.getLabels());
b.setProperties(a.getAllProperties());
All the sessions of the conference are now available online