I am wondering how this following query works. We start with an empty DB.
WITH [{a:1, b:null}, {a:1, b:null}] AS rows
UNWIND rows AS row
MERGE (t:Test {a:row.a, b:coalesce(row.b, 'none')}) SET t.b=row.b
Added 1 label, created 1 node, set 3 propertie...