create relationship and merge node in loop in neo4j
问题 I am trying to create a relationship in loop from both top list and bottom list .I am trying to connect the top loop with the bottom loop .I really appreciate any help.Thanks. UNWIND [{id:"1",name:"b1",year:"2010"}, {id:"2",name:"d1",year:"2011"}, {id:"3",name:"e1",year:"2013"}] as user MERGE (u:User {id: user.id, name: user.name,year:user.year}) UNWIND [{id:"21",name:"b",year:"2010"}, {id:"41",name:"d",year:"2011"}, {id:"51",name:"e",year:"2013"}] as w MERGE (y:W {id: w.id, name: w.name,year