Similar issue, with dbt you can run a command like...
# ask-community
j
Similar issue, with dbt you can run a command like:
dbt run -s source:airbnb.listings+
which will trigger all downstream dependencies from that dbt source. How can I accomplish a similar selection in my SDA in dagster?
c
Hi Jean. You could create an asset selection object. Something like:
Copy code
define_asset_job("my_job", AssetSelection.keys("airbnb.listings").downstream())