Other ways of importing data into Neo4j

Using Data Importer to import data into a Neo4j database is not the only way and may not always be the best way to meet your importing requirements. There are other ways to load data that may be more suitable, depending on what your needs are.

LOAD CSV

If you are comfortable writing your own Cypher® load scripts, this option lets you take advantage of the full capabilities of Cypher. See Cypher Manual → LOAD CSV for more information.

Neo4j-admin import

To load large amounts of CSV data into an offline database, using the Neo4j-admin tool to import is convenient. See Operations Manual - Neo4j-admin for more informartion.

Neo4j connectors

Neo4j offers to capability of using different connectors to connect data from various sourced into Neo4j. See Getting started → Neo4j Connectors for a list of available integrations.

APOC Load procedures

If your data is not in a CSV format, using APOC Load procedures allows you to ingest data from formats including json, xml and arrow. APOC is a library of user-defined procedures and functions that extends the use of Cypher. See APOC user guide → apoc.load for more information about the load procedure.