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 Success flag.

Inputs

NameTypeDescription
First ListlistFirst list
Second ListlistSecond list

Outputs

NameTypeDescription
SuccessBooleanWhether successfully merged
Result ListlistResult list

Notes

  • The result preserves the items from both lists; it does not remove duplicates.