Hi, I want to define dagster `@asset`s for meltano...
# ask-community
s
Hi, I want to define dagster `@asset`s for meltano runs. The https://github.com/quantile-development/dagster-meltano integration seems to revolve around `@job`s, but I want to embrace dagsters SDA approach. Any recommendations/pointers?
c
Every SDA has an op / graph attached to handle the compute - you could basically call
AssetsDefinition.from_op
on the provided meltano ops to construct an SDA around the meltano op is one option - or you could run the meltano op inside of a large asset graph
f
It’s also the sole issue opened on that repo : https://github.com/quantile-development/dagster-meltano/issues/28