Hello, Is there a way to display bi-directional relations instead of the current uni-directional concept.
MATCH (partner1)-[:PARTNER]-(partner2)
instead of
MATCH (partner1)-[:PARTNER]->(partner2)
or
MATCH (partner1)<-[:PARTNER]-(partner2)
I just want to see the other partner and this is regardless if I am starting with Patner 1 or 2 Node.
Please advise.
Thanks