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

# productBulkTranslate Mutation

Creates/updates translations for products.

Requires the MANAGE\_TRANSLATIONS permission.

Triggers the following webhook events:

-   TRANSLATION\_CREATED (async): Called when a translation was created.
-   TRANSLATION\_UPDATED (async): Called when a translation was updated.

```graphql
productBulkTranslate(
  errorPolicy: ErrorPolicyEnum
  translations: [ProductBulkTranslateInput!]!
): ProductBulkTranslate
```

Details

```graphql
type ProductBulkTranslate {
  count: Int!
  results: [ProductBulkTranslateResult!]!
  errors: [ProductBulkTranslateError!]!
}
```

<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) ● [`[ProductBulkTranslateInput!]!`](/api-reference/products/inputs/product-bulk-translate-input.md)

List of product translations.

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

### Type

<a id="productbulktranslate"></a>

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

Creates/updates translations for products.

Requires the MANAGE\_TRANSLATIONS permission.

Triggers the following webhook events:

-   TRANSLATION\_CREATED (async): Called when a translation was created.
-   TRANSLATION\_UPDATED (async): Called when a translation was updated.
