Abhas P
09/14/2021, 10:28 PMwith Flow("example") as flow:
credentials = {'id': ... , 'pass': ...}
apply_map(transform ,result ,unmapped(credentials)) # can we do this ?
apply_map(transform ,result ,id =unmapped(credentials['id']), pass =unmapped(credentials['pass'])) # or is this the standard way?
Kevin Kho
unmapped
will work for you and that is the standard way. No need to split out credentials, at that point I think it depends on what your function takes but both will workAbhas P
09/14/2021, 11:28 PMraise ValueError("Cycle found; flows must be acyclic!")
which kinda surprised me.
So I stuck to sending the creds as individual unmapped params.Kevin Kho
Abhas P
09/15/2021, 4:05 PMKevin Kho
Abhas P
09/15/2021, 4:36 PMKevin Kho