CALL algo.list() **ERROR** **Neo.ClientError.Procedure.ProcedureNotFound**

I am getting this error when I run the first command in section 2. Please help

CALL algo.list()

ERROR

Neo.ClientError.Procedure.ProcedureNotFound

There is no procedure with the name algo.list registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.

List available procedures


I have installed Neo4J 4.1.0 on Windows 10.

Thanks,

KS

Hello @kanranmm and welcome to the Neo4j community :slight_smile:

There are several ways:

  • CALL dbms.procedures()
  • CALL dbms.functions()
  • CALL apoc.help('')
  • CALL gds.list()

Regards,
Cobra

Thank you very much. That worked.

1 Like