Concat
This node allows you to concat two lists into one.
This node
Input Fields
field | schema | explanation |
schema | schema_id | Select a schema of the data input. |
a | any | The first list to concat. |
b | any | The second list to concat. |
Output Fields
field | schema | explanation |
list | any | The combined list. |
Example
In this example we have two lists that we want to concat.
[
"item1",
"item2",
"item3"
]
[
"item4",
"item5",
"item6"
]
Now we can use the Concat node, and in this case the schema set to Any.
And will get this output:
[
"item1",
"item2",
"item3",
"item4",
"item5",
"item6"
]
Did this answer your question?
😞
😐
🤩
Last updated on November 9, 2022