diff --git a/checkov/common/graph/db_connectors/rustworkx/rustworkx_db_connector.py b/checkov/common/graph/db_connectors/rustworkx/rustworkx_db_connector.py index c55170cb181..b2d1168cc96 100644 --- a/checkov/common/graph/db_connectors/rustworkx/rustworkx_db_connector.py +++ b/checkov/common/graph/db_connectors/rustworkx/rustworkx_db_connector.py @@ -37,7 +37,7 @@ def rustworkx_from_local_graph(self, local_graph: LocalGraph[_Block]) -> rx.PyDi ( e.origin, e.dest, - {"label": e.label}, + {"label": e.label, "source": e.origin, "target": e.dest}, ) for e in local_graph.edges ]