Hi I'm currently using DBMS version 5.1.0
MY data model is (:User)-[:LIKE]->(:Pull)
I'm trying to count the number of likes relationship for a specific Pull using this query
PROFILE
MATCH res=(:Pull {id:"pull4"})-[:LIKE]-()
return size(collect(relat...