I would like to find all paths between two nodes in my graph using neo4j.rb
I know how to write a cypher query for the same and the following source https://github.com/neo4jrb/neo4j/wiki/Neo4j%3A%3ACore-Traverse indicates an "outgoing" function.
But
a = SomeNodeClass.find_by(someattrr: 'someval')
a.outgoing(:somerel).paths.to dest
Throws an error: undefined method outgoing for SomeNodeClass:0x007fd787dd9080
Where SomeNodeClass is defined as mentioned in neo4j.rb by adding
include Neo4j::ActiveNode
Does anyone know if there is a way to write direct cypher queries using neo4j.rb since the _query method no longer seems to be supported.
Can anyone help the documentation doesn't seem to be of much help here.