From 870ae6467f44b86e8ade265130de2d31f874a80a Mon Sep 17 00:00:00 2001 From: Masoob Alam Date: Tue, 16 Jun 2026 14:53:19 +0530 Subject: [PATCH 1/2] Clarify Neo4j vs FalkorDB troubleshooting in quickstart README. Separate backend-specific guidance so FalkorDB users do not apply Neo4j database fixes when running the wrong quickstart script. Co-authored-by: Cursor --- examples/quickstart/README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/examples/quickstart/README.md b/examples/quickstart/README.md index d254f2d6f1..2398ce04b5 100644 --- a/examples/quickstart/README.md +++ b/examples/quickstart/README.md @@ -90,9 +90,9 @@ After running this example, you can: ## Troubleshooting -### "Graph not found: default_db" Error +### Neo4j: "Graph not found: default_db" Error -If you encounter the error `Neo.ClientError.Database.DatabaseNotFound: Graph not found: default_db`, this occurs when the driver is trying to connect to a database that doesn't exist. +If you encounter the error `Neo.ClientError.Database.DatabaseNotFound: Graph not found: default_db` while running **`quickstart_neo4j.py`**, the Neo4j driver is trying to connect to a database that does not exist. **Solution:** The Neo4j driver defaults to using `neo4j` as the database name. If you need to use a different database, modify the driver constructor in the script: @@ -105,6 +105,15 @@ driver = Neo4jDriver(uri=neo4j_uri, user=neo4j_user, password=neo4j_password) driver = Neo4jDriver(uri=neo4j_uri, user=neo4j_user, password=neo4j_password, database="your_db_name") ``` +### FalkorDB: connection refused or wrong script + +If you are using FalkorDB but see Neo4j-specific errors (for example `Neo.ClientError`), you are likely running **`quickstart_neo4j.py`** instead of **`quickstart_falkordb.py`**. + +**Solution:** +1. Start a FalkorDB server locally (see [FalkorDB docs](https://docs.falkordb.com/)). +2. Confirm `FALKORDB_URI` points at your instance (default: `falkor://localhost:6379`). +3. Run `python quickstart_falkordb.py`. + ## Understanding the Output ### Edge Search Results From db7540ab4c15e98fe93b537e0c836539f1289cf7 Mon Sep 17 00:00:00 2001 From: Masoob Alam Date: Tue, 16 Jun 2026 16:52:57 +0530 Subject: [PATCH 2/2] Retrigger CI after CLA signature. Co-authored-by: Cursor