in the browser I can run some cypher say-
MATCH (start:Node{node:'IP-0000110637'}), (end:Node{node:'FD9-END'})
CALL algo.shortestPath.stream(start, end, "steps")
YIELD nodeId, cost
MATCH (o:Node) WHERE id(o) = nodeId
RETURN o.node AS node, cost
And g...