Files
ETL_Datamanagement/neo4jqueries/analysis_queries/query4.cypher
Philipp Jacoby 3003310be0 finishes setup
2026-02-10 17:43:26 +01:00

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;