From 746824b2c7108d19edc5f797f6bb4ed169460dea Mon Sep 17 00:00:00 2001 From: seeta-ramaraju <150829444+seeta-ramaraju@users.noreply.github.com> Date: Fri, 3 Oct 2025 18:16:09 +0100 Subject: [PATCH] update README --- neo4j/Cypher/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/Cypher/README.md b/neo4j/Cypher/README.md index 35c93ea..37804c0 100644 --- a/neo4j/Cypher/README.md +++ b/neo4j/Cypher/README.md @@ -22,7 +22,7 @@ MERGE (d)-[r:INTERACTS_WITH]->(ds) SET r.maxClinicalTrialPhase = toInteger(row.maxClinicalTrialPhase); ``` -Cypher code to query data: +Example Cypher code to query data: ``` MATCH p=()-[r:INTERACTS_WITH]->() RETURN p LIMIT 1000 @@ -47,7 +47,7 @@ MERGE (p:Pathway {name: row.pathway}) MERGE (g)-[:MEMBER_OF {source: row.source}]->(p); ``` -Cypher code to load data (Focus on a Specific gene): +Example Cypher code to query data (Focus on a Specific gene): ``` MATCH (g:Gene {name: "TP53"})-[r:MEMBER_OF]->(p:Pathway)