Single Value Expected, List Received
List Expected, Single Value Received
List Expected, List of List Received
Example: If you have a Google Sheet with a column that you want to send to AI as a whole for context, you’d use a Join List Items
node to merge the contents of each row from that column instead of enabling loop mode and processing each row in a loop.
Scenario | Problem | Solution Node | How It Works |
---|---|---|---|
List → Text | Need to combine multiple items into one | Join List Items | Concatenates all items in a list into a single text string, using a separator |
Text → List | Need to use one item with many | Duplicate | Creates multiple copies of a single text input to match the size of another list, ensuring compatible data structures |
List of Lists → List | Have nested lists that need flattening | Subflow or Flatten List | Either processes inner lists through a dedicated flow (Subflow) or combines all nested items into a single-level list (Flatten List) |