I have cypher files in my import
folder which I would like to import using the neo4j browser. However,
CALL apoc.cypher.runFile("myfile.cypher");
gives me
Neo.ClientError.Procedure.ProcedureNotFound
There is no procedure with the name `apoc.cypher.runFile` registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
However, APOC 5.7.0 is installed and all the other apoc.cypher.run*
procedures are available. I have also
dbms.security.procedures.allowlist=apoc.*
dbms.security.procedures.unrestricted=jwt.security.*,apoc.*
in my neo4j.conf
and
apoc.export.file.enabled=true
apoc.import.file.enabled=true
in my apoc.conf
Am I missing something?