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.

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

kanranmm
Node Link

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

1 ACCEPTED SOLUTION

Hello @kanranmm and welcome to the Neo4j community

There are several ways:

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

Regards,
Cobra

View solution in original post

2 REPLIES 2

Hello @kanranmm and welcome to the Neo4j community

There are several ways:

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

Regards,
Cobra

kanranmm
Node Link

Thank you very much. That worked.