文档似乎没有按预期工作。
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