# Add option to select type attribute

{% hint style="info" %}
Please keep in mind that to add the option attribute "Model" must first exist.
{% endhint %}

```graphql
mutation {
  attributeSelectAddOption(
    input: {
      code: "Model"
      option: {
        code: "eve_1011"
        name: { language: "pl_PL", value: "eve_1011" }
      }
    }
  ) {
    __typename
  }
}
```
