neo4j怎么导出数据
时间: 2023-10-31 20:04:35 浏览: 300
DataImportNeo4j:使用 node.js 将数据导入 Neo4j
您可以使用Neo4j Desktop中的导出工具或使用Cypher语句将数据导出到CSV格式文件中。以下是一个示例Cypher查询:
```
CALL apoc.export.csv.all("export.csv",{useTypes:true})
YIELD file, source, format, nodes, relationships, properties, time, rows, batchSize, batches, done, data
RETURN file, source, format, nodes, relationships, properties, time, rows, batchSize, batches, done
```
该查询将导出所有节点、关系和属性到CSV文件中。请注意,您需要安装apoc库才能使用此查询。
阅读全文