finishes setup
This commit is contained in:
5
neo4jqueries/analysis_queries/query3.cypher
Normal file
5
neo4jqueries/analysis_queries/query3.cypher
Normal file
@@ -0,0 +1,5 @@
|
||||
// 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;
|
||||
Reference in New Issue
Block a user