Does ON MATCH / ON CREATE work with SET only?
If yes: how would you solve the following problem?
MERGE (u2:User {user_email: "xyz@abc.at"})
ON MATCH
CALL apoc.do.when(
EXISTS((u2)-[:USER_TO_CUSTOMER]->(c)),'','MERGE (u2)-[:USER_TO_CUSTOMER {from: apoc.date.currentTimestamp()}]->(c)',{u2:u2, c:c})
THX, JJJ