Is it possible to get a partition from a daily par...
# ask-community
a
Is it possible to get a partition from a daily partitioned job and be used to materialize an asset?
j
Hey @Aaron T am i correct that you’re looking to get the result of a job for a particular partition and use that as the input for an asset?
a
Yes, that is correct.
j
ok. We don’t support interoperability between jobs and assets. Depending on the structure of your job you could re-write it using assets
a
That's what I did. But instead of it being 6 ops, it is just 1 asset. Which I guess is ok. Just makes it a bit harder to debug if something is not working. I tried converting the ops to assets, but I kept getting this error - https://dagster.slack.com/archives/C01U954MEER/p1679369119661419
j
you can also use a graph asset to make a set of ops into a single asset https://docs.dagster.io/concepts/assets/graph-backed-assets
a
hmmm, might have to try that approach. Same concept for using that asset with a TimeWindowPartitionMapping?
Thank you for the input!