Hi,
when I was working in the previous version of neo4j (my actual version is 3.2.5) everything was ok, when I want to load my csv file I use this command:
USING PERIODIC COMMIT
LOAD CSV WITH HEADERS FROM "file:///C:/Users/user/Documents/NEWDATANEO4J/myfile.csv" AS line
MERGE (a:Actor{id_actor:line.ID_Actor,name_actor:toString(line.NAME_ACTOR)})
but now after upgrading my neo4j version, it shows me the error "Neo.ClientError.Statement.SemanticError: Cannot merge node using null property value for id_actor"
my csv file is like that:

if anyone can help me with that, I would be very thankful.