The GDS version running in an AuraDS instance can be found by
- Using the
gds.version()
function in the Neo4j Browser. - Using the
gds.version()
function in cypher-shell.
It is important to note thatgds.version()
is a Cypher function and not a procedure. Therefore, make sure you call the function with the RETURN clause -RETURN gds.version()
- Using the GraphDataScience.gds.version() method in the Neo4j Graph Data Science Client Python client.
Neo4j Browser:

Cypher-shell:

Neo4j Graph Data Science Client Python client:
from graphdatascience import GraphDataScience
gds = GraphDataScience('neo4j+s://<DBID>.databases.neo4j.io', auth=('neo4j', 'my_Secret_password'))
print(gds.version())
Common Errors:
Common errors include using the incorrect syntax (Using CALL instead of RETURN) `CALL gds.version()` and getting the below error:
Comments
0 comments
Please sign in to leave a comment.