我正在直接通过Cypher命令来使用Neo4j,也可以从Java中以编程方式来工作。我正在尝试遵循一些在线示例,例如在此处找到的“单一来源最短路径”查询:https://neo4j.com/docs/graph-algorithms/current/algorithms/single-source-shortest-path/
此页面上的评论和解释很少。谁能告诉我在哪里可以找到有关这些函数采用的参数的文档/信息?
例如,我正在尝试在流模式下使用shortestPath函数。谁能告诉我在哪里可以找到以下调用的shortestPath()和stream()部分的文档:
MATCH (n:Loc {name:'A'})
CALL algo.shortestPath.deltaStepping.stream(n, 'cost', 3.0)
YIELD nodeId, distance
RETURN algo.getNodeById(nodeId).name AS destination, distance
例如,不清楚使用3.0作为值。
有人知道我在哪里可以找到文档:
algo.shortestPath,“ deltaStepping”部分,最后是stream()?
我已经尝试了neo4j网站,尽管对某些功能有很好的文档/讨论,但是我无法找到有关其algo。*功能的一般参考页。