cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

mkretsch
Node Clone
since ‎05-05-2020
‎06-01-2022

User Statistics

  • 22 Posts
  • 0 Solutions
  • 0 Kudos given
  • 3 Kudos received

User Activity

I have a great query, which let's me clone nodes, and then merge them, which maintains the original node in case I merged incorrectly. I would love an edge (a1) --[MERGED]->(node) (a2)--[MERGED]->(node) To essentially connect the originals with the n...
I am cloning a group of nodes, but before doing so, I want to write a new property SET n.uuid = n.uuidoriginal, but I am having troubles then with collect. This way the input and output cloned nodes have different uuid, but the same uuidoriginal. An...
I have a long list of uuids for nodes I know to be the same stored in a csv (uuid1 and uuid2). When I use the following simple query, it only yields the result for the first row and does not continue on with the rest of the sheet. Any ideas? LOAD CSV...
As we work across a multitude of data sources, we are constantly merging duplicate nodes. However, it's very easy to "over merge" or merge incorrectly and regret it after the merge has already taken place. To avoid this, we are hoping to create the f...
Hello! I have encountered an issue. I use a specific query to merge nodes in my database MATCH (a1), (a2) WHERE id(a1) = {{"Source":node}} AND id(a2) = {{"Target":node}} WITH head(collect([a1,a2])) as nodes CALL apoc.refactor.mergeNodes(nodes,{ prope...
Kudos from