Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
11-10-2022 05:50 AM
When I want to use the NEuler, Launching NEuler (Graph Data Science Playground) fails checking gds plugin, it uses call dbms.procedures() to check but is deprecated.
The following message is displayed:
We are checking whether the library is installed by running the following query:
CALL dbms.procedures()
YIELD name
WHERE name STARTS WITH "gds"
RETURN count(*) AS count;
It tries to find the gds plugin but it keeps searching endlessly.
Can I change the query in some way to use SHOW PROCEDURES?
01-15-2023 11:21 AM
I have the same issue.
01-16-2023 02:07 AM
Hello @damianquijano 😊
I use this query:
CALL {
RETURN 'Graph Data Science' AS Plugin, gds.version() AS Version
UNION ALL
RETURN 'APOC' AS Plugin, apoc.version() AS Version
}
RETURN Plugin, Version
Regards,
Cobra
All the sessions of the conference are now available online