Hi
I'm using Neo4j 3.5.7 with Apoc 3.5.0.4. When using apoc.refactor.cloneNodesWithRelationships, Neo4j browser displays a message indicating this procedure is deprecated and not maintained anymore. Is there another already existing procedure to use for the same purpose?
Thanks
Olivier
apoc.refactor.cloneNodesWithRelationships
is fully covered by apoc.refactor.cloneNodes([list of nodes], true)
. The true
as second argument is important since it will clone relationships as well.
1 Like