Add kind to graph_multi_asset #25783
Answered
by
benpankow
JordyForNow
asked this question in
Q&A
-
Hey how can i define the "kinds" on the output of a graph_multi_asset? |
Beta Was this translation helpful? Give feedback.
Answered by
benpankow
Nov 15, 2024
Replies: 2 comments
-
AssetOut currently has support for tags but not kinds. Created a feature request for it: #25796 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi Jordy, as of spec = AssetSpec(key="my_asset", kinds={"python"})
@graph_multi_asset(outs={"my_asset": AssetOut.from_spec(spec)})
def my_graph_multi_asset():
... |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
benpankow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Jordy, as of
1.9.2
you're now able to construct anAssetOut
from a spec which gives you more control over properties likekinds
: