我正试图使用这指南的帮助将我的数据库导出到Cypher。当我运行以下查询时,它会以错误进行响应。
CALL apoc.export.cypher.all("all-plain.cypher", {
format: "plain",
useOptimizations: {type: "UNWIND_BATCH", unwindBatchSize: 20}
})
YIELD file, batches, source, format, nodes, relationships, properties, time, rows, batchSize
RETURN file, batches, source, format, nodes, relationships, properties, time, rows, batchSize;
我复制了查询并将其直接粘贴到控制台。以下是我的错误:
没有为此数据库实例注册名称
apoc.export.cypher.all
的过程。请确保正确拼写了过程名,并确保正确部署了该过程。
我的实例运行在Docker容器上。
发布于 2022-08-30 09:39:12
您需要安装APOC,然后才能使用它们。
https://stackoverflow.com/questions/73539032
复制相似问题