Skip to main content
This document explains the Flatten List of Lists node, which converts nested lists into a single flat list.

Node Inputs

Required Fields

  • Input List of list: Nested list structure Example: [[1, 2], [3, 4], [5]]

Node Output

  • List: Single flattened list Result: [1, 2, 3, 4, 5]

Node Functionality

The Flatten List of Lists node:
  • Combines nested lists
  • Preserves item order
  • Handles varying depths
  • Maintains data types
  • Supports batch processing

Example Use Cases

  1. Process Results:
  1. Merge Categories:
  1. Combine Responses:

Important Considerations

  1. Maintains original order
  2. Works with any length lists
  3. Handles empty lists
In summary, the Flatten List of Lists node helps simplify complex nested arrays into single-level lists, making data easier to process in your Gumloop workflows.