以下 Cypher-Query 从匹配的关系索引中返回所有关系:
start r=relationship:concept_contained_in_report('concept_id:2') return r
如何返回这些关系的所有端节点而不是关系本身?
我希望像
start r=relationship:concept_contained_in_report('concept_id:2') return r.end
但这不起作用,因为 end (端节点)不是关系的属性。
谢谢乔格