There are two options: 1. you can install apoc https://github.com/neo4j-contrib/neo4j-apoc-procedures And use the apoc.export.cypher.* procedures to create the export.cypher file from your graph or data https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_export_to_cypher_script
2. neo4j-shell tools https://github.com/jexp/neo4j-shell-tools (you have to enable remote-shell in neo4j.conf) have a command export-cypher -o export.cypher you can import files generated by these with ./bin/neo4j-shell -file export.cypher On Fri, Mar 3, 2017 at 1:17 AM, leam hall <[email protected]> wrote: > For example, if I have a long list of cypher commands I can make sure they > are right and then load them. Sort of like an SQL statement in files. Being > able to dump files to ascii would be nice. When I try the neo4j-shell it > refuses connection. > > Thanks! > > Leam > > -- > 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.
