Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-17-2019 03:23 AM
HI!
When I try to use apoc.coll.intersection, it doesn`t work. I see the error: there isn't such procedure.
But apoc.coll.set works correctly.
version - 3.5.0.4
Added to conf file:
dbms.security.procedures.unrestricted=apoc*
I see this issue on Windows and Linux
Could I fix this?
Solved! Go to Solution.
09-17-2019 10:42 AM
apoc.coll.intersection()
is a function, not a procedure, so you won't use the CALL ... YIELD syntax.
An example that should work for you:
RETURN apoc.coll.intersection([1,2,3,4,5], [3,5,9])
09-17-2019 03:53 AM
What exact statement causes the error?
09-17-2019 10:42 AM
apoc.coll.intersection()
is a function, not a procedure, so you won't use the CALL ... YIELD syntax.
An example that should work for you:
RETURN apoc.coll.intersection([1,2,3,4,5], [3,5,9])
All the sessions of the conference are now available online