Create List Node
Last updated
Last updated
The create list node allows you to transform individual items to a list format. For example, passing in “a” and “b” outputs: [a, b].
Field 1 : First item in list
Type: Text
Field 2 : Second item in list
Type: Text
Click Add Input to add more inputs.
Output : The created list
Type : List<Text>
Example usage: {{create_list_0.output}}
The order in which you input the fields is the same order in the output list.
The below example is a pipeline for creating a list of 3 names.
If the inputs receive the following values:
name_0 : John
name_1: Adam
name_2: Alan
The outputs will be: [John, Adam, Alan].