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

# SelectValueOptions

Input criteria for selecting an option within a `<select>` element, used by 'selectOption'.
Specify one of 'value', 'label', or 'index'.

## Definition

```graphql theme={null}
input SelectValueOptions {
  value: String
  label: String
  index: Int
}
```

## Fields

### `value`

[String](/reference/graphql/scalars/string)

Select the option whose 'value' attribute matches this string. Example: `"option_value_1"`.

### `label`

[String](/reference/graphql/scalars/string)

Select the option whose visible text (label) matches this string. Example: `"First Option"`.

### `index`

[Int](/reference/graphql/scalars/int)

Select the option at this 0-based index within the `<select>` element. Example: `0` for the first option.
