I am building some test application with Neo4j. I want to model small social network and try to find:
- All friends of user X
- Friends of user's X friends, who likes beer
I stuck with modeling "know" relation. Let's take 3 users A, B and C. Is it enough to define only one relation between, them ex.
A knows B
B knows C
or I have to make 'bidirectional' relations and explicitly provide that
A knows B so B knows A
B knows C so C knows B
it will increase the number of relations, but maybe it is needed.
The same question is related to favorite drink.
A likes beer
should I also define?
beer is liked by A