可以参考下面的查询:
CALL apoc.export.json.all('all.json')
- 数据导出为JSON文件,生成的JSON在neo4j安装目录下的import目录下
CALL apoc.export.json.query('match (n) return n limit 10','test.json')
CALL apoc.export.csv.query('match (n) return n.name AS name limit 10','test.csv',{stream:true})