Neo4j Cipher via Neo4j-shell
MATCH (a)-[r:ACTED_IN]->(m) RETURN a.name,r.roles, m.title :play movies MATCH (a)-[:ACTED_IN]->(m) RETURN a.name, m.title Number of movies : $match (n:Movie) return count(n) match (n:Movie) return count(n) match (n) return count(n) // Creating Movies CREATE (TheMatrix:Movie {title:’The Matrix’, released:1999, tagline:’Welcome to the Real…