我正在使用 neo4J APOC 库,并使用导出/导入功能。
apoc.export.graphml.all 效果很好,并且能够一次提取所有内容,但是,当调用查询版本时,它无法这样做。密码导出也是如此。
出现的错误是Neo.ClientError.Procedure.ProcedureCallFailed
Failed to invoke procedure `apoc.export.cypher.query`: Caused by: java.lang.IllegalStateException: Constraint is associated with relationships
我尝试运行的查询:
call apoc.export.graphml.query("match (n) return n", "backups/please", {})
应该备份所有节点,当它实际上给出上述错误时。