function any(variable IN list WHERE predicate)

Tests whether a predicate holds for at least one 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 (a)
    WHERE a.name='Eskil' AND ANY (x IN a.array WHERE x = "one")
    RETURN a