I have following cypher query which returns all (in and out) relationships of an specific node:
START s=node(1) MATCH s<-[r]->(t) RETURN type(r) as RelationshipType, .......
Now I want to find out the direction of each relationship. Is there an command like "RETURN RelationshipDirection(r)
" ?? :)
Thanks.