Import List() into a workflow

Hi guys,

How import a list into a workflow? When I tried I have to init the list into the workflow by 'list=new list (of string) for the argument’s default value. And ofc that make the content being erased.

Rookie question* :upside_down_face:

Create an ‘In’ argument in your workflow and set the data type to List. When you invoke the workflow, make sure you pass in the List you want to use. Hope that helps. If you don’t want it erased, create a new List variable and initialise that instead, rather than the argument.

1 Like

I found out the solution, just needed to init the argument to “in/out”

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.