Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

neo4j - how to insert a node in a middle of a linked list in cypher

I am using linked list pattern in cypher to represent some data.

(node1)-[:NEXT]->(node2)-[:NEXT]->(node3)

the question is how can I insert newNode between the linked list nodes. so that I get

(node1)-[:NEXT]->(newNode)-[:NEXT]->(node2)-[:NEXT]->(node3) for example.

there are some corner cases where the newNode can be at the end of the list or the beginning and the solution needs to account for them.

is there an elegant end easy way to do it without multiple apoc.do.when calls?

question from:https://stackoverflow.com/questions/65865919/how-to-insert-a-node-in-a-middle-of-a-linked-list-in-cypher

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

Please log in or register to answer this question.

1 Answer

0 votes
by (71.8m points)

All you need to do is plumb in the new node, and then remove the old relationships, something like... (I'm assuming some properties here)

MATCH (n1:Node {name:'node1'})-[r:NEXT]->(n2)
CREATE (n1)-[:NEXT]->(:Node {name: 'new Node'})-[:NEXT]->(n2)
DELETE r

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
...