cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Missing apoc proc after install

Hi,

I have:

NEO4j - 3.4.14
APOC - 3.4.0.7

I see many APOC proc/fun installed but many not.

For example.
There are missing many from apoc.coll.*
like sortNodes

Someone knows what happened ?

Regards,
Cezary

3 REPLIES 3

were the apoc.coll* previously there?

Have you configured either/both

dbms.security.procedures.unrestricted
dbms.security.procedures.whitelist

in your conf/neo4j.conf?

How are you attempting to use it? Remember that only procedures use the CALL ... YIELD syntax. Functions don't need that, you just use them as expressions. You can call apoc.help() passing some of the text of the function or proc to check if it's there, for example CALL apoc.help('coll.')

ok, it works now.

First I add jar to NEO_HOME\plugins
now to graph.db\plugins too