ProductTranslation
Represents product translations.
type ProductTranslation implements Node {
id: ID!
language: LanguageDisplay!
seoTitle: String
seoDescription: String
name: String
description: JSONString
descriptionJson: JSONString @deprecated
translatableContent: ProductTranslatableContent
}
Fields
ProductTranslation.id
● ID!
non-null scalar miscellaneous
The ID of the product translation.
ProductTranslation.language
● LanguageDisplay!
non-null object miscellaneous
Translation language.
ProductTranslation.seoTitle
● String
scalar miscellaneous
Translated SEO title.
ProductTranslation.seoDescription
● String
scalar miscellaneous
Translated SEO description.
ProductTranslation.name
● String
scalar miscellaneous
Translated product name.
ProductTranslation.description
● JSONString
scalar miscellaneous
Translated description of the product.
Rich text format. For reference see https://editorjs.io/
ProductTranslation.descriptionJson
● JSONString
deprecated scalar miscellaneous
DEPRECATEDThis field will be removed in Saleor 4.0. Use the
description
field instead.Translated description of the product.
Rich text format. For reference see https://editorjs.io/
ProductTranslation.translatableContent
● ProductTranslatableContent
object products
Represents the product fields to translate.
Added in Saleor 3.14
Interfaces
Node
interface miscellaneous
An object with an ID
Member Of
Product
object ● ProductBulkTranslateResult
object ● ProductTranslatableContent
object
Implemented By
TranslationTypes
union