Import data
There are three main methods for importing data into Memgraph:
- CSV Import Tool: Memgraph includes the CSV Import Tool which allows you to import nodes and relationships from multiple CSV files.
- LOAD CSV Clause: You
can also use the Cypher clause
LOAD CSVto load data from CSV files. - Importing Cypher queries: If
your data is saved in the form of Cypher queries (we call this
.cypherlformat) then this is the right approach for you.