Merge Lists
Combines two lists into a single list. Use it when a flow gathers items from two sources and you need them together in one list for further processing.
What it does
- Takes a first list and a second list as inputs.
- Joins them into one combined result list.
- Reports whether the merge succeeded through the
Successflag.
Inputs
| Name | Type | Description |
|---|---|---|
| First List | list | First list |
| Second List | list | Second list |
Outputs
| Name | Type | Description |
|---|---|---|
| Success | Boolean | Whether successfully merged |
| Result List | list | Result list |
Notes
- The result preserves the items from both lists; it does not remove duplicates.