ProcedureNotFound gds.list()
ProcedureNotFound gds.list()
在使用 Neo4j Desktop(版本 4.4.5)时,我无法从 gds 库调用任何过程,尽管我已经添加了插件。即使打电话
CALL gds.list()
我收到以下错误消息
Neo.ClientError.Procedure.ProcedureNotFound
There is no procedure with the name `gds.list` registered for this database instance. Please
ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
看起来 gds 库即使在安装后也不可见。
gds.list()
不是过程而是函数。尝试以下操作:
RETURN gds.list()
在使用 Neo4j Desktop(版本 4.4.5)时,我无法从 gds 库调用任何过程,尽管我已经添加了插件。即使打电话
CALL gds.list()
我收到以下错误消息
Neo.ClientError.Procedure.ProcedureNotFound
There is no procedure with the name `gds.list` registered for this database instance. Please
ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
看起来 gds 库即使在安装后也不可见。
gds.list()
不是过程而是函数。尝试以下操作:
RETURN gds.list()