pierrejeambrun commented on code in PR #51424:
URL: https://github.com/apache/airflow/pull/51424#discussion_r2152415863
##########
airflow-core/src/airflow/models/dag.py:
##########
@@ -1966,6 +1966,10 @@ class DagModel(Base):
cascade="all, delete, delete-orphan",
)
schedule_assets = association_proxy("schedule_asset_references", "asset")
+ task_inlet_asset_references = relationship(
+ "TaskInletAssetReference",
+ cascade="all, delete, delete-orphan",
+ )
Review Comment:
Nice, looking forward to it so we can have a 'task_level' representation of
Asset inlets for the graph view. Resolved aliases do not use that if I'm not
mistaken and we will still need to do an extra lookup, but that fine
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]