Hi All,
I am trying to show the top 10 node in the graph and below is the query I tried in neo4j browser,
MATCH (p1:Username)-[r:sent]->(p2:Username)
RETURN p1, count(*) AS count
ORDER BY count DESC LIMIT 10
As below image shows the top 10 nodes w...