Hello Graphers,

Hi Everybody,

My name is Mark Maas and I’m a newbie to (Graph) databases. I have no experience with Neo4j or other databases. But I’m trying to learn the basics to get a better understanding of the product.

My first question is about loading CSV files:

All the examples are like:

LOAD CSV FROM 'https://neo4j.com/docs/cypher-manual/3.5/csv/artists.csv' AS line
CREATE (:Artist { name: line[1], year: toInteger(line[2])})

But I’m working local. So a have made a .CSV file on my hard drive. The path to the file is: C:\Neo4j\artists.CSV. But that isn’t working. So I’m doing something wrong. Hope someone can help me out.