Following Cypher-Query returns all relationships from a matching relationship-index:
start r=relationship:concept_contained_in_report('concept_id:2') return r
How can I return all the end-nodes of those relationships instead of the relationships itself?
I would expect something like
start r=relationship:concept_contained_in_report('concept_id:2') return r.end
but that doesn't work since end (the endnode) is not a property of relationship.
Thanks Jorg