> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Prepend to List

> Add one or more items to the beginning of a list.

**Prepend to List** puts the new items first, preserving the order of both the
new items and the original list.

## Inputs

| Input     | Type           | Required | Description                    |
| --------- | -------------- | -------- | ------------------------------ |
| **List**  | List           | No       | The existing list.             |
| **Items** | Repeatable any | No       | Items to add at the beginning. |

## Output

| Output     | Type | Description                         |
| ---------- | ---- | ----------------------------------- |
| **Result** | List | The new items followed by the list. |

For example, prepending `1` and `2` to `[3, 4]` produces `[1, 2, 3, 4]`.

<Warning>
  This action is visible in the workflow editor, but the current server package
  does not include a matching implementation.
</Warning>
