How to check whether a node exists using relationship and other node of the relationship?
A ->(IN) B
I want to check if B is present with node A having relationship IN using py2neo
I tried this cypher query:
MATCH (a { name:'xyz' })<-[:IN]-(b)
Return b
But I was looking for something in py2neo like find function?