From 21198728af3d73c63a6765a77a6d1ca9c92e665f Mon Sep 17 00:00:00 2001 From: hanyuqing <1106611654@qq.com> Date: Tue, 30 Dec 2025 12:24:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E5=85=B7=E7=B1=BB=E6=89=93=E5=8D=B0?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E5=8F=98=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- util/neo4j_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/util/neo4j_utils.py b/util/neo4j_utils.py index 78386cf..0546253 100644 --- a/util/neo4j_utils.py +++ b/util/neo4j_utils.py @@ -48,6 +48,7 @@ class Neo4jUtil: session.execute_write( lambda tx: tx.run(cypher, parameters=params).consume() ) + print(cypher) logger.debug(f"执行写操作: {cypher}") def execute_read(self, cypher: str, params: Optional[Dict[str, Any]] = None) -> List[Dict[str, Any]]: