6 lines
170 B
Plaintext
6 lines
170 B
Plaintext
// 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;
|