I would like to do a search, and I would like to start traversing from 2 labels (OR condition). For example, I need to find out all the nodes which have labels either \'Male
As for v3.5, we can do:
MATCH (n) WHERE (n:User OR n:Admin) AND n.name CONTAINS "ail" RETURN n
and get:
╒══════════════════╕ │"n" │ ╞══════════════════╡ │{"name":"Abigail"}│ ├──────────────────┤ │{"name":"Bailee"} │ └──────────────────┘