Hi,
I am not able to understand why the below query returns different results.
MATCH (service:Service)
WHERE coalesce(service.name = 'Service1Name', service.aliasValue = 'Service2Alias')
RETURN service;
Initially I have data as below
CREATE (s:Servic...