Hi Michael,
I need your help in optimising this cypher query to run pretty much faster preferably in milliseconds.
match (c:client{client_id:$var3}) optional match (d:client) where (c.address =d.address or c.employer =d.employer) and c<>d and d.status ='WRITE_OFF' return count(distinct d)
Thanks so much.