Skip to main content

What does this node do?

Creates a dropdown select input that allows users to choose from a predefined list of options when running the workflow. Ideal for workflows that need specific choices or categories.

Configuration

label
string
required
Display label for the select input field.
options
array
required
List of available options. Each option should have a label and value.Example:
[
  { "label": "Option 1", "value": "opt1" },
  { "label": "Option 2", "value": "opt2" }
]
default_value
string
Pre-selected default option value.
required
boolean
default:"true"
Whether a selection must be made.
multiple
boolean
default:"false"
Allow multiple selections.

Output

{
  "value": "selected_option_value"
}
For multiple selections:
{
  "value": ["option1", "option2"]
}

Access the value

Use {{Select_0.value}} in other nodes to access the selected value(s).

Examples

Category-based content generation

Generate content based on selected category:

Language selection

Process content in selected language:

Workflow branching

Route workflow based on selection:

Multi-select filtering

Filter data by multiple selected criteria: