https://dagster.io/ logo
Title
s

Shaounak Nasikkar

11/07/2022, 2:56 PM
Hi There, I have a graph with the following decorator definition -
@graph(
name="DB_Compare", description="Compare the Data Dictionary between two databases", ins={ "get_src_conn": In( dagster_type=Dict[str, Any], description="Get_Source_Connection_Properties" ), "get_tgt_conn": In( dagster_type=Dict[str, Any], description="Get_Target_Connection_Properties" ), "ready": In(dagster_type=List[Any], description="Ready", default_value=[]), }, out={"ready": GraphOut()}, ) What I want is to use the value from the dictionary I am passing. e.g. get_tgt_conn["conn_type"] Not able to make use of that. Can anyone guide me on how to use the dictionary passed as input definition that we use normally? Do I need to use context or something?
y

yuhan

11/11/2022, 2:15 AM