Skip to main content

ProductTranslation Object

Represents product translations.

type ProductTranslation implements Node {
id: ID!
language: LanguageDisplay!
seoTitle: String
seoDescription: String
slug: String
name: String
description: JSONString
descriptionJson: JSONString @deprecated
translatableContent: ProductTranslatableContent
}

Fields​

id ● ID!​

The ID of the product translation.

language ● LanguageDisplay!​

Translation language.

seoTitle ● String​

Translated SEO title.

seoDescription ● String​

Translated SEO description.

slug ● String​

Translated product slug.

Added in Saleor 3.21

name ● String​

Translated product name.

description ● JSONString​

Translated description of the product.

Rich text format. For reference see https://editorjs.io/

translatableContent ● ProductTranslatableContent​

Represents the product fields to translate.

Show deprecatedHide deprecated

descriptionJson ● JSONString​

DEPRECATED

Use the description field instead.

Translated description of the product.

Rich text format. For reference see https://editorjs.io/

Interfaces​

Node​

An object with an ID

Member Of​

Product object ● ProductBulkTranslateResult object ● ProductTranslatableContent object

Implemented By​

TranslationTypes union