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

6 lines
229 B
Plaintext

// Drugs treating diseases that present specific symptoms
MATCH (s:Symptom)<-[:PRESENTS]-(d:Disease)<-[:TREATS]-(c:Compound)
RETURN s.name AS Symptom, c.name AS Drug, count(d) AS DiseaseCount
ORDER BY DiseaseCount DESC
LIMIT 20;