From 25217a28acaf3bcca4b8f4b56bbb412e5a028a2f Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Wed, 6 Aug 2025 10:46:46 +0200 Subject: [PATCH] feat: Add graph db name to dict --- cognee/infrastructure/databases/graph/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cognee/infrastructure/databases/graph/config.py b/cognee/infrastructure/databases/graph/config.py index cdc001863..73698e21d 100644 --- a/cognee/infrastructure/databases/graph/config.py +++ b/cognee/infrastructure/databases/graph/config.py @@ -81,6 +81,7 @@ class GraphConfig(BaseSettings): "graph_filename": self.graph_filename, "graph_database_provider": self.graph_database_provider, "graph_database_url": self.graph_database_url, + "graph_database_name": self.graph_database_name, "graph_database_username": self.graph_database_username, "graph_database_password": self.graph_database_password, "graph_database_port": self.graph_database_port,