6 lines
184 B
Plaintext
6 lines
184 B
Plaintext
// Top 10 diseases with the most associated symptoms
|
|
MATCH (d:Disease)-[:PRESENTS]->(s:Symptom)
|
|
RETURN d.name AS Disease, count(s) AS SymptomCount
|
|
ORDER BY SymptomCount DESC
|
|
LIMIT 10;
|