Hi All.
I am learning "Intermediate Cypher Queries Course"
Testing List Inclusion | GraphAcademy (neo4j.com)
It Require me to:
Neo4j supports storing a single value or an array of values of the same type within a property.
In our data model, every :Movie
node has a languages
property which contains an array of strings. For example ['English', 'German', 'Italian']
.
Finding German Language Movies
Write and execute a query to return people who both acted in and directed a movie released in the German language.
How many unique Person node names are returned? (There will be duplicates that you should not count)
BUt when I check in sandbox with the query:
match (m:Movie)
where m.languages contains "German"
return mIt return no Record. I am wondering why? Haiza.