Hi all,
I trying to run call apoc.help("apoc")
but i am facing the bellow error
There is no procedure with the name apoc.help registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
A list of procedures (comma separated) that are to be loaded. The list may
contain both fully-qualified procedure names, and partial names with
the wildcard . The default () loads all procedures. If no value is specified,
no procedures will be loaded.
so given your definition we would only expect APOC procedures name poc.coll.* and apoc.load.* as well as procedures named gds.*.
so @dana_canzano
shall i comment out the whole config like #dbms.security.procedures.unrestricted=myextensions.example,my.procedures.,apoc.
I am not using any myextensions or my.procedures as of now. I am using apoc.* .
Try replacing “dbms.security.procedures.unrestricted=my.extensions.example,my.procedures.,apoc.”
and
“dbms.security.procedures.allowlist=apoc.coll.,apoc.load.,gds.*
with
”dbms.security.procedures.unrestricted=apoc.,algo.”
and
“dbms.security.procedures.allowlist=apoc.,gds."
Maybe try replacing
"dbms.security.procedures.unrestricted=my.extensions.example,my.procedures.,apoc."
and
"dbms.security.procedures.allowlist=apoc.coll.,apoc.load.,gds."
with
"dbms.security.procedures.unrestricted=apoc.,algo."
and
"dbms.security.procedures.allowlist=apoc.,gds.*"