Skip to main content
Version: 3.x

ProductTranslatableContent

Represents product's original translatable fields and related translations.

type ProductTranslatableContent implements Node {
id: ID!
seoTitle: String
seoDescription: String
name: String!
description: JSONString
descriptionJson: JSONString @deprecated
translation(languageCode: LanguageCodeEnum!): ProductTranslation
product: Product @deprecated
attributeValues: [AttributeValueTranslatableContent!]!
}

Fields

ProductTranslatableContent.id ● ID! non-null scalar

The ID of the product translatable content.

ProductTranslatableContent.seoTitle ● String scalar

SEO title to translate.

ProductTranslatableContent.seoDescription ● String scalar

SEO description to translate.

ProductTranslatableContent.name ● String! non-null scalar

Product's name to translate.

ProductTranslatableContent.description ● JSONString scalar

Product's description to translate.

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

ProductTranslatableContent.descriptionJson ● JSONString deprecated scalar

DEPRECATED

This field will be removed in Saleor 4.0. Use the description field instead.

Description of the product.

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

ProductTranslatableContent.translation ● ProductTranslation object

Returns translated product fields for the given language code.

ProductTranslatableContent.translation.languageCode ● LanguageCodeEnum! non-null enum

A language code to return the translation for product.

ProductTranslatableContent.product ● Product deprecated object

DEPRECATED

This field will be removed in Saleor 4.0. Get model fields from the root level queries.

Represents an individual item for sale in the storefront.

ProductTranslatableContent.attributeValues ● [AttributeValueTranslatableContent!]! non-null object

List of product attribute values that can be translated.

Interfaces

Node interface

An object with an ID

Implemented by

TranslatableItem union


Was this page helpful?