hi
i am using neo4j desktop for mac version 1.1.1.2
with neo browser 3.2.13
i have a simple graph with USERS and PAGES and relationship called LIKES
USERS likes different pages
so there are different USERS liking same PAGES.
i would love to make a query with cypher to show me only the PAGES liked by more than x USERS.
and i did it with this:
MATCH ()-[r:LIKES]->(n)
WITH n, count(r) as conto
WHERE conto > 5
RETURN n;
the problem is that like this i can only see pages.
what if i want to see pages and users and relationships?
thank you for the support