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:LogLevel {Name:row.LogLevel})
MERGE (m:LogMessage {Name:row.LogMessage})
MERGE (d)-[:HAVE]->(l)
MERGE(m) <-[:FROM] - (l);
But I got back an error of Neo.ClientError.Statement.SemanticError
Cannot merge node using null property value for Month. However, my Month had no null value.