使用APOC合并重复节点报错
使用APOC合并相同节点的时候报错 MATCH (n:AREA) WITH n.name AS name, COLLECT(n) AS nodelist,COUNT(*) AS count WHERE count>1 CALL apoc.refactor.mergeNodes(nodelist) YIELD node RETURN node 以前用的时候没问题 但最近使用的时候一直报错 Neo.ClientError.Procedure.ProcedureRegistrationFailed apoc.refactor.mergeNodes is unavailable because it is sandboxed and has dependencies outside of the sandbox. Sandboxing is controlled by the dbms.security.procedures.unrestricted setting. Only unrestrict procedures you can trust with access to database internals. 是哪里错了么