LOAD CSV

Load data from a CSV file

The LOAD CSV clause instructs Neo4j to load data from a CSV file located at the given URL. This is typically used with CREATE and MERGE to import tabular data into the graph.

Reference: LOAD CSV manual page
Related: :help CREATE :help MERGE :help Cypher
LOAD CSV FROM "http://<insert person.csv>" AS line
MERGE (n:Person {id: line[0]})
SET n.name = line[1]
RETURN n
Import Person nodes from a CSV file into the graph