我正在使用neo4J APOC库,并使用导出/导入功能。
apoc.export.graphml.all效果很好,并且能够提取一次它,但是,当调用查询版本时,它无法执行此操作。 cypher出口的情况也是如此。
出现的错误是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", {})
应该备份所有节点,当它实际上给出上述错误时。