PssoceurenotFound GDS.list()

发布于 2025-01-31 10:24:43 字数 572 浏览 2 评论 0原文

在使用Neo4J桌面(版本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库也看上去也不可见。

While working with Neo4j Desktop (version 4.4.5), I am unable to call any procedure from gds library though I have added the plugin already. Even on calling

CALL gds.list()

I am getting the below error message

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.

It looks like gds library is not visible even after installation.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请远离我 2025-02-07 10:24:43

gds.list()不是一个过程,而是函数。尝试以下内容:

RETURN gds.list()

The gds.list() is not a procedure but rather a function. Try the following:

RETURN gds.list()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文