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