Jiahao Zhao
Jiahao Zhao

Reputation: 111

Neo4j Best way to export database to CSV

I have tried the Cypher export csv, but the query itself takes too long, and it didn't seem practical since i needed to export a whole database which ranges upwards to a few gigabytes in size.

Is there a tool that lets me export a huge database in fairly good time?

Upvotes: 1

Views: 979

Answers (1)

Fabio Lamanna
Fabio Lamanna

Reputation: 21552

You should take a look at the APOC procedures. This is straightforward to install within your Neo4j environment and provide many additional functionalities, e.g. to export your results or data to .csv file.

Upvotes: 2

Related Questions