Is it possible for a generic op to reference an SD...
# ask-community
f
Is it possible for a generic op to reference an SDA as an input?
dagster bot responded by community 2
z
Have you checked to see if passing an AssetIn to the op’s “ins” kwarg works?
f
I have not - was trying to find some docs on this but couldn’t find much
z
I use something like
@op(ins={"sda_dataframe":In(asset_key=AssetKey("key_name")})
f
Ooo so that works and resolves the input? Nice!