Hi!
I had an issue while working on the Intermediate Cypher Queries course. I was supposed to find the movie in the db with the highest number of actors and tried the following Cypher code:
MATCH (m:Movie)RETURN m.title,[(p:Person)-[:ACTED_IN]->(m) |...