:param node_id : 'id'
with $node_id as par
match (u:User) where u[par] is not null with u,par
with apoc.map.fromLists(
[par],
[u[par]]
) AS output
CALL apoc.merge.node(
["child"],
output
) yield node return node
I want to make the above script run ...