Take this example query, which is a fragment of a larger query.
WITH ['foo', 'bar', 'baz'] AS theList, 42 AS someVal
UNWIND (CASE theList WHEN [] THEN [null] ELSE theList END) AS l
CREATE (w:Word {content: l})
WITH DISTINCT someVal AS sv2
RETURN sv2;...