Skip to content

Instantly share code, notes, and snippets.

@vladbatushkov
Created May 11, 2019 16:57
Show Gist options
  • Save vladbatushkov/d7677a3c01d0ed82aeb3bd0f0ed6d2a6 to your computer and use it in GitHub Desktop.
Save vladbatushkov/d7677a3c01d0ed82aeb3bd0f0ed6d2a6 to your computer and use it in GitHub Desktop.
The most "mix-band" genres.
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