Hi All,
I'm still new to Neo4j but have been tasked with loading and playing with some csv files to gain and understanding of the relationships that exist in the dataset. I have already tried importing my CSV files in a few different ways but keep running into the following error;
Neo.ClientError.Statement.ExternalResourceFailed
Couldn't load the external resource at: file:/var/lib/neo4j/import/CORProject.csv
Here is the Cypher code I used;
</>
LOAD WITH HEADERS FROM 'file:///COR_Project.csv' As row
CREATE (:COR_Project {Id: row.CORProject})
</>
Sorry if this problem has been resolved already but is there any way to fix this issue?
Many thanks
J