I want to create a relationship with the same node
LOAD CSV WITH HEADERS FROM "file:///transactions.csv" AS line
WITH line
MERGE (c:Customer {loginId: line.`login_ID`, name: line.Customer_Name, age: line.Customer_Age, occupation: line.Customer_Occupa...