In GraphDB platforms (Net4j, OrientDB, FlockDB, HyperGraphDB...) it is possible to define relationships between nodes.
I need to define directional relationships, such that the relation has different names depending on its direction.
For example:
Parent(A,B) := Sibling(B,A).
Then, I want to traverse or query a graph using both terms and directions.
Of course, I don't want to define two relationships, but only one.
Sometimes I even want to use a non-directional name, for example:
Call(A,B) := Answer(B,A);
TalkWith(A,B) := Call(A,B) || Call(B,A)
And use a directional or indirectional traversals / queries
For example, I may want to ask:
Get any X that TalkWith(A,X))
or
Get any X that Call(A,X))
or
Get any X that Answer(A,X))
Which existing GraphDB platforms support it?