Alessio Battistutta
unread,Apr 30, 2012, 10:40:11 AM4/30/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Neo4j
Hi,
i have to make a query in cypher to retrieve 2-nodes relation
node a and node b, this nodes have many relation, but i need only a ->
b and b -> a
and typically are a mix of in/out relations
for example 2 outgoing relation from a to b and 1 incoming relation
from b to a
a-[following,friendOf]-b
b-[followedBy]-a
so i have to check if this list o 3 relation node by node is complete
and need names
of relations in return too
START a=node(3), b=node(6)
MATCH a-[?]-b
RETURN ?
probably not :)
can anyone help me ?
Thanks