This should be easy, I am overlooking something. I want to match a group of nodes and return all where the ID matches any of a group of given IDs. Something like this:
MATCH (b:`Band`)-[r:`something`]->(u:`SomethingElse`)
WHERE b.uuid IN ['1', '2', '3']
RETURN b
That returns the first node that matches. I want all that match. What am I missing?
Invalid Input ']': expected whitespace, comment or an expression
(Encountered in Neo4j 4.1.1) – Oliver Sieweke