I have two nodes in neo4j named A and DEF. A and DEF are connected through a relationship named DEFINITION.This relationship has a property named:description(description of what is A).I want to run query like "what is A" which should fetch the property of the relationship DEFINITION.I tried out this query.But it is returning null.any leads?
match (l:A)-[h:DEFINITION]->(r:DEF)
return h.description;
match (l:A)-[h:DEFINITION]->(r:DEF) return l,h,r;? - Davy de Vriesmatch (l:A) return land expand this node. Do you then have any results? - Davy de Vriesmatch (l:A) return l,match (r:DEF) return r,match ()-[h:DEFINITION]-() return hdo you have results on every query? - Davy de Vries