finishes setup
This commit is contained in:
5
neo4jqueries/analysis_queries/query6.cypher
Normal file
5
neo4jqueries/analysis_queries/query6.cypher
Normal file
@@ -0,0 +1,5 @@
|
||||
// Top 10 Drugs treating multiple Diseases
|
||||
MATCH (c:Compound)-[:TREATS]->(d:Disease)
|
||||
RETURN c.name AS Drug, count(d) AS DiseaseCount
|
||||
ORDER BY DiseaseCount DESC
|
||||
LIMIT 10;
|
||||
Reference in New Issue
Block a user