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
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…