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
If you want to filter node by multiple labels with OR or IN condition, use this code:
MATCH (n) WHERE labels(n) in [['Male'],['Female']] AND n.name =~ '.ail.' RETURN n