> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/products/llms.txt)
> Source: https://docs.saleor.io/api-reference/products/mutations/product-variant-bulk-translate

# productVariantBulkTranslate Mutation

Creates/updates translations for product variants.

Requires the MANAGE\_TRANSLATIONS permission.

Triggers the following webhook events:

-   TRANSLATION\_CREATED (async): A translation was created.
-   TRANSLATION\_UPDATED (async): A translation was updated.

```graphql
productVariantBulkTranslate(
  errorPolicy: ErrorPolicyEnum
  translations: [ProductVariantBulkTranslateInput!]!
): ProductVariantBulkTranslate
```

Details

```graphql
type ProductVariantBulkTranslate {
  count: Int!
  results: [ProductVariantBulkTranslateResult!]!
  errors: [ProductVariantBulkTranslateError!]!
}
```

<a id="arguments"></a>

### Arguments

<a id="error-policy"></a>

#### [`errorPolicy`](#error-policy) ● [`ErrorPolicyEnum`](/api-reference/miscellaneous/enums/error-policy-enum.md)

Policies of error handling. DEFAULT: REJECT\_EVERYTHING

<a id="translations"></a>

#### [`translations`](#translations) ● [`[ProductVariantBulkTranslateInput!]!`](/api-reference/products/inputs/product-variant-bulk-translate-input.md)

List of product variant translations.

<a id="type"></a>

### Type

<a id="productvariantbulktranslate"></a>

#### [`ProductVariantBulkTranslate`](/api-reference/products/objects/product-variant-bulk-translate.md)

Creates/updates translations for product variants.

Requires the MANAGE\_TRANSLATIONS permission.

Triggers the following webhook events:

-   TRANSLATION\_CREATED (async): A translation was created.
-   TRANSLATION\_UPDATED (async): A translation was updated.
