Skip to main content

ProductTranslatableContent

No description

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

ProductTranslatableContent.seoTitle ● String scalar

ProductTranslatableContent.seoDescription ● String scalar

ProductTranslatableContent.name ● String! non-null scalar

ProductTranslatableContent.description ● JSONString scalar

Description of the product.

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?