0
votes

I have installed Neo4J 4.1.0 on Windows 10. When I run the following command I get the error.

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.

1

1 Answers

0
votes

Neo4j 4.x does not support the Graph Algorithms library.

Instead, you should be using the new Graph Data Science library. In that library, the equivalent query would be gds.list(), as in:

CALL gds.list