Hi,
in "intermediate cypher" I created two queries:
MATCH (m:Movie)
WHERE m.year = 2015
RETURN m.title,
[(dir:Person)-[:DIRECTED]->(m) | dir.name] AS directors
-> Returns 180 People
MATCH (m:Movie) <-[:DIRECTED] - (p:Person)
WHERE m.year = 2015
RETURN m.title, collect(p.name) AS directors
-> Returns 178 People
Why does the first Query include empty lists (two movies with as directors while the second does not?
Is there a command for whether a property has more than one entry?
Bye
Michael