You can use my shell-import tools to export the CSV from the neo4j-shell

See here, and then use the "import-cypher" command with an output csv file
for your cypher statement that returns the data.

https://github.com/jexp/neo4j-shell-tools#cypher-import

Otherwise you can also write a few lines of your favorite programming
language to query Neo4j with a driver or plain http (transactional endpoint)
and write the csv yourself.

Or you could use the neo4j-shell and the eval command to evaluate some
javascript, going over all nodes / rels that you're interested in and
writing them out to std-out and redirect into a file.

http://jexp.de/blog/2014/02/exploring-an-unknown-neo4j-database/



On Fri, Aug 8, 2014 at 10:19 PM, Chaoteng Liu <[email protected]> wrote:

> I am using Neo4j on my browser on Ubuntu. I got over 1 million nodes and I
> want to export them as csv file.
>
> When return data size is small like "match n return n limit 3" there is a
> big fat "download csv" button I could use. But when it comes to big result
> set like over 1000 the shell just says "Resultset too large(over 1000
> rows)" and the button doesnt show up.
>
> How can I export csv files for large resultset?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Neo4j" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to