如何在 neo4j 中使用 Neography 找到给定节点的相关节点?



文档似乎没有按预期工作。

node
#<Neography::Node>>
node.outgoing
#<Neography::NodeTraverser:0x007f5981427f20

我只想获取给定关系的节点,但根据当前文档尚不清楚:

https://github.com/maxdemarzi/neography

该语法会构建一个遍历描述,直到您准备好 .each 它:

node.outgoing(:friends).depth(4).nodes.each do |node|
puts node.map{|n| n.name }.join(' => friends => ')
end

相关内容

  • 没有找到相关文章

最新更新