function none(variable in list WHERE predicate)

Returns true if the predicate holds for no element in the list.

Arguments:
list: An expression that returns a list
variable: This is the variable that can be used from the predicate.
predicate: A predicate that is tested against all items in the list.

Example Query:
    MATCH p=(n)-[*1..3]->(b)
    WHERE n.name='Alice' AND NONE (x IN nodes(p) WHERE x.age = 25)
    RETURN p