I am new to neo4j graph database. I was just playing with and tried different queries using cypher.
I have small question, Lets say I have Person and Movie Node. A Person acted and directed a same Movie. How can I create two relationships(say, ACTED_IN, DIRECTED) between same Person and movie node.
(Person)-[ACTED_IN]->(Movie) and (Person)-[DIRECTED]->(Movie)
Is it possible to do it or I am missing something to understand? Thank you