I am trying to follow the above example but Neo4j is telling me that there is no procedure called "gds.graph.create". I am able to use procedures like "gds.graph.project.cypher" and others listed at https://neo4j.com/docs/graph-data-science/current/m...
I would agree with you but path returned by "gds.shortestPath.dijkstra.stream" doesn't seem to fit the pattern. Here's how I defined my graph
CALL gds.graph.project.cypher(
'undirectedGraph',
'MATCH (n:Node) RETURN id(n) AS id',
'MATCH (n:Node)...