GDS Version 2.4.4
Neo4j Desktop 5.11.0
- I converted relational data of multiple CSV into a Graph model in Aura DB
- Created Dump File and Loaded it with Neo4j Desktop - to have access to GraphDataScience (GDS) library
- Connected GDS with Python
- Now Trying to do a Link Prediction using GDS.
problem
- I could not find the Graph name: Where can I search? - since GDS required-> ml calling all need the graph name.
CALL gds.graph.list(
graphName: String
) YIELD
graphName: String,
database: String,
configuration: Map,
nodeCount: Integer,
relationshipCount: Integer,
schema: Map,
schemaWithOrientation: Map,
degreeDistribution: Map,
density: Float,
creationTime: Datetime,
modificationTime: Datetime,
sizeInBytes: Integer,
memoryUsage: String
- when I tested this "return gds.graph.list();" there was no display and syntax error
kindly assist me in this, thanks in advance.