I am using Neo4j 2.0.1 with rails 3.2.1. I am getting an error which seems very basic, and yet I can't seem to solve it. I'd appreciate any help with it!
Here's my code snippet:
rels1 = identity1.rels(:outgoing,:friends)
if !rels1.nil? and rels1.count > 0
friendships12 = rels1.to_other(identity2)
end
where identity1 and identity2 are objects of a subclass of Neo4j::Rails::Model.
The error I get is on the line "friendships12 = ...." and it says
"undefined method `_other_node' for nil:NilClass"
What am I doing wrong? Initially I tried the obvious:
friendships12 = identity1.rels(:outgoing,:friends).to_other(identity2)
This was based on the rails guide for neo4j (http://neo4j.rubyforge.org/guides/basic.html, see "Finding Relationships between two nodes"). But that gave me the same error, which is why I tried it as above. But the error persists.