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:
MATCH (a) WHERE a.name='Alice' RETURN coalesce(a.hairColor, a.eyes)