Home > Enterprise >  Neo4J libary methods are not available after installation
Neo4J libary methods are not available after installation

Time:02-01

I installed two plugins in neo4j desktop. I try do operated with the methods then. But I did not worked. Have anybody an idea why? Foto Installation

enter image description here

CodePudding user response:

Make sure to restart your database, and you can check eg. with return apoc.version() or return gds.version() if the plugins are installed.

For APOC you can use call apoc.help("") to see the installed/available procedures and functions.

Generally you can use SHOW PROCEDURES and SHOW FUNCTIONS.

  • Related