I'm trying to find relationship count over a pattern / path. Where I need result even if the whole pattern doesn't exist (pattern exist partially)
MATCH (u:USER {first_name:'xyxy'})
OPTIONAL MATCH (u)<-[t1]-(:METADATA)-[t2]->(:USER)
RETURN count(di...