List / collection
FreeOperations on a list — add, remove, length, get, join, contains.
Manages a list stored under a variable name. See Lists & collections.
Fields
| Field | Type | Required | Templatable | Notes |
|---|---|---|---|---|
| List variable | text | yes | — | The list to operate on |
| Operation | select | yes | — | append, prepend, remove, clear, length, get, join, contains |
| Value / index | text | — | yes | Item for add/remove/contains, or index for get |
| Save result to | text | — | — | For length / get / join / contains |
| Separator (join) | text | — | — | Default , |
Outcomes
default— continue the flow.
How it works
Read operations (length, get, join, contains) write their result into the Save result
to variable.
List cart append "{{var.product}}"
List cart length → cart_count
Send "You have {{var.cart_count}} items"