function coalesce(expression [, expression]*)

Returns the first non-NULL value in the list of expressions passed to it. In case all arguments are NULL, NULL will be returned.

Arguments:
expression: The expression that might return NULL.

Example Query:
    MATCH (a)
    WHERE a.name='Alice'
    RETURN coalesce(a.hairColor, a.eyes)