apoc.export.arrow.all(file STRING, config MAP<STRING, ANY>) - 将整个数据库导出为 arrow 文件。
|
|
apoc.export.arrow.graph(file STRING, graph ANY, config MAP<STRING, ANY>) - 将给定图导出为 arrow 文件。
|
|
apoc.export.arrow.query(file STRING, query STRING, config MAP<STRING, ANY>) - 将给定 Cypher 查询的结果导出为 arrow 文件。
|
|
apoc.export.arrow.stream.all(config MAP<STRING, ANY>) - 将整个数据库导出为 arrow 字节数组。
|
|
apoc.export.arrow.stream.graph(graph ANY, config MAP<STRING, ANY>) - 将给定图导出为 arrow 字节数组。
|
|
apoc.export.arrow.stream.query(query STRING, config MAP<STRING, ANY>) - 将给定 Cypher 查询导出为 arrow 字节数组。
|
|
apoc.export.csv.all(file STRING, config MAP<STRING, ANY>) - 将整个数据库导出到提供的 CSV 文件。
|
|
apoc.export.csv.data(nodes LIST<NODE>, rels LIST<RELATIONSHIP>, file STRING, config MAP<STRING, ANY>) - 将给定的 NODE 和 RELATIONSHIP 值导出到提供的 CSV 文件。
|
|
apoc.export.csv.graph(graph MAP<STRING, ANY>, file STRING, config MAP<STRING, ANY>) - 将给定图导出到提供的 CSV 文件。
|
|
apoc.export.csv.query(query STRING, file STRING, config MAP<STRING, ANY>) - 将运行给定 Cypher 查询的结果导出到提供的 CSV 文件。
|
|
apoc.export.cypher.all(file STRING, config MAP<STRING, ANY>) - 将整个数据库(包括索引)导出为 Cypher 语句到提供的文件(默认:Cypher Shell)。
|
|
apoc.export.cypher.data(nodes LIST<NODE>, rels LIST<RELATIONSHIP>, file STRING, config MAP<STRING, ANY>) - 将给定的 NODE 和 RELATIONSHIP 值(包括索引)导出为 Cypher 语句到提供的文件(默认:Cypher Shell)。
|
|
apoc.export.cypher.graph(graph MAP<STRING, ANY>, file STRING, config MAP<STRING, ANY>) - 将给定图(包括索引)导出为 Cypher 语句到提供的文件(默认:Cypher Shell)。
|
|
apoc.export.cypher.query(statement STRING, file STRING, config MAP<STRING, ANY>) - 将给定 Cypher 查询中的 NODE 和 RELATIONSHIP 值(包括索引)导出为 Cypher 语句到提供的文件(默认:Cypher Shell)。
|
|
apoc.export.cypher.schema(file STRING, config MAP<STRING, ANY>) - 将所有 schema 索引和约束导出为 Cypher 语句。
|
|
apoc.export.graphml.all(file STRING, config MAP<STRING, ANY>) - 将整个数据库导出到提供的 GraphML 文件。
|
|
apoc.export.graphml.data(nodes LIST<NODE>, rels LIST<RELATIONSHIP>, file STRING, config MAP<STRING, ANY>) - 将给定的 NODE 和 RELATIONSHIP 值导出到提供的 GraphML 文件。
|
|
apoc.export.graphml.graph(graph MAP<STRING, ANY>, file STRING, config MAP<STRING, ANY>) - 将给定图导出到提供的 GraphML 文件。
|
|
apoc.export.graphml.query(statement STRING, file STRING, config MAP<STRING, ANY>) - 将 Cypher 语句中给定的 NODE 和 RELATIONSHIP 值导出到提供的 GraphML 文件。
|
|
apoc.export.json.all(file STRING, config MAP<STRING, ANY>) - 将整个数据库导出到提供的 JSON 文件。
|
|
apoc.export.json.data(nodes LIST<NODE>, rels LIST<RELATIONSHIP>, file STRING, config MAP<STRING, ANY>) - 将给定的 NODE 和 RELATIONSHIP 值导出到提供的 JSON 文件。
|
|
apoc.export.json.graph(graph MAP<STRING, ANY>, file STRING , config MAP<STRING, ANY>) - 将给定图导出到提供的 JSON 文件。
|
|
apoc.export.json.query(statement STRING, file STRING, config MAP<STRING, ANY>) - 将 Cypher 语句的结果导出到提供的 JSON 文件。
|
|