The combine lists node allows you to combine multiple lists into a single list. For example, [a, b, c] combining with [d, e, f] becomes [a, b, c, d, e, f].

Node Inputs

  1. Type: The type of list you want to create
    • Type: Dropdown
  2. Lists: The lists you want to combine
    • Type: List<List<T>> (based on the type of list you choose)

Node Outputs

  1. Output: The combined list
    • Type: List<T>
    • Example usage: {{combine_list_0.output}}