Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
07-21-2020 02:34 PM
Sorry for this basic questions, it there a way just to show popular name and not the count once the code has been executed?
example <RETURN pop.Name, count(pop.Name) as frequency
ORDER BY frequency DESC
LIMIT 2>
Thank you
Solved! Go to Solution.
07-21-2020 03:29 PM
Hello @HelloDearSir and welcome to the Neo4j community
WITH pop.Name AS name, count(pop.Name) AS frequency
ORDER BY frequency DESC
LIMIT 2
RETURN name
Regards,
Cobra
07-21-2020 03:29 PM
Hello @HelloDearSir and welcome to the Neo4j community
WITH pop.Name AS name, count(pop.Name) AS frequency
ORDER BY frequency DESC
LIMIT 2
RETURN name
Regards,
Cobra
All the sessions of the conference are now available online