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]]: