Created
April 27, 2017 19:56
-
-
Save nbransby/76a81f2b8836ec3d4f700a6dfeb48851 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MATCH (them:User) | |
//find out the lowest number of rating for any one of them | |
WITH them, min(size((them)<-[:RATED]-(:User))) as min_rating_count | |
//get all of them who share this lowest number of ratings | |
WITH them WHERE size((them)<-[:RATED]-(:User)) = min_rating_count RETURN them |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment