kaxil commented on issue #9343: URL: https://github.com/apache/airflow/issues/9343#issuecomment-645291850
Can you let us know the use-case for it? There is a show_dag command: https://airflow.readthedocs.io/en/stable/cli-ref.html#show_dag to view the shape of the DAG. And if you want to get downstream_tasks for tests, you can directly use the following code: ``` dag.task_dict[task_id].downstream_task_ids ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
