cypher
LOAD CSV WITH HEADERS FROM 'file:/path/to/people.csv' AS row
MERGE (p:Person {id: row.id, name: row.name})
bash
neo4j-admin import --database=graph.db --nodes=/path/to/nodes.csv --relationships=/path/to/relationships.csv
cypher
CALL apoc.export.csv.all('/path/to/output.csv', {})
bash
neo4j-admin dump --database=graph.db --to=/path/to/neo4j_dump