List Operations
Flatten List of Lists
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
- Process Results:
- Merge Categories:
- Combine Responses:
Important Considerations
- Maintains original order
- Works with any length lists
- 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.