I saved the csv file to Dropbox and I want to upload them to Neo4j.
Link for the shared file Node csv users : https://www.dropbox.com/s/6kibjeea5e4cks1/users.csv?dl=0
This is cypher
USING PERIODIC COMMIT 100
LOAD CSV WITH HEADERS FROM "https://www.dropbox.com/s/6kibjeea5e4cks1/users.csv?dl=0" AS line
CREATE(u:User{userId: toInt(line.Id), username: line.UserName, fullname: line.FullName})
The version of Neo4j that I am using is Neo4j Enterprise version 3.0.9.
The result showed that he successfully created Node users, but created more than 300 nodes with no username and full name, although these are 9 nodes with a username and full name in the CSV file. What am I missing?
I tried to change the URL from the shared link to the download link , but the error Failed to load an external resource .