Hi i am new to neo4j. I would like to create 3 nodes using my csv data. Below is my code:
LOAD CSV WITH HEADERS FROM "file:///errorlog.csv" AS row
MERGE (d:DateTime {Name:row.Date, Month:row.Month, Day:row.Day, Time:row.Time, Year:row.Year})
MERGE (l...