Created
May 11, 2019 16:57
-
-
Save vladbatushkov/d7677a3c01d0ed82aeb3bd0f0ed6d2a6 to your computer and use it in GitHub Desktop.
The most "mix-band" genres.
This file contains hidden or 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 (g1:Genre)<-[:OF]-(b:Band)-[:OF]->(g2:Genre) | |
RETURN g1.name as genre_name, count(DISTINCT b) as num_of_bands | |
ORDER BY num_of_bands DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment