using Cypher 2 I want to find all nodes of a certain label (Context), which are called either "health" or "opinion".
Request in progress:
MATCH (c:Context) WHERE c.name="health" OR c.name="opinion" RETURN c;
But I wonder if Cypher has a syntax that I could put in the first part of MATCH, something like this:
MATCH (c:Context{name:"health"|name:"opinion})
The above example does not work, but I just show it so you know what I mean.
Thank!
source
share