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.