ProductBulkTranslate
Creates/updates translations for products.
Added in Saleor 3.15This API is currently in Feature Preview and can be subject to changes at later point.
Triggers the following webhook events:
- TRANSLATION_CREATED (async): Called when a translation was created.
- TRANSLATION_UPDATED (async): Called when a translation was updated.
type ProductBulkTranslate {
count: Int!
results: [ProductBulkTranslateResult!]!
errors: [ProductBulkTranslateError!]!
}
Fields
ProductBulkTranslate.count
● Int!
non-null scalar miscellaneous
Returns how many translations were created/updated.
ProductBulkTranslate.results
● [ProductBulkTranslateResult!]!
non-null object products
List of the translations.
ProductBulkTranslate.errors
● [ProductBulkTranslateError!]!
non-null object miscellaneous
Returned By
productBulkTranslate
mutation