Lee-W commented on PR #41137:
URL: https://github.com/apache/airflow/pull/41137#issuecomment-2259600345

   The UI looks great! I tested it with the following dag but couldn't see the 
graph. Is there anything I missed? Thanks!
   
   ```python
   from __future__ import annotations
   
   import pendulum
   
   from airflow import DAG
   from airflow.datasets import Dataset
   from airflow.decorators import task
   
   with DAG(
       dag_id="issue_856",
       start_date=pendulum.datetime(2021, 1, 1, tz="UTC"),
       schedule=Dataset("s3://bucket/my-task") | Dataset("2") & Dataset("3") | 
(Dataset("4") & Dataset("5")),
       catchup=False,
       tags=["producer", "dataset"],
   ):
   
       @task
       def produce_dataset_events():
           pass
   
       produce_dataset_events()
   
   ```


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

Reply via email to