I am trying to understand what the difference is between
MATCH (a) WHERE a.name='Peter' RETURN a
and
MATCH (a {name:'Peter'}) RETURN a
both return the same results. Is one faster or cheaper in computing cycles? Which is the preferred approach?