CollectionTranslatableContent
Represents collection's original translatable fields and related translations.
type CollectionTranslatableContent implements Node {
id: ID!
seoTitle: String
seoDescription: String
name: String!
description: JSONString
descriptionJson: JSONString @deprecated
translation(languageCode: LanguageCodeEnum!): CollectionTranslation
collection: Collection @deprecated
}
Fields
CollectionTranslatableContent.id ● ID! non-null scalar
The ID of the collection translatable content.
CollectionTranslatableContent.seoTitle ● String scalar
SEO title to translate.
CollectionTranslatableContent.seoDescription ● String scalar
SEO description to translate.
CollectionTranslatableContent.name ● String! non-null scalar
Collection's name to translate.
CollectionTranslatableContent.description ● JSONString scalar
Collection's description to translate.
Rich text format. For reference see https://editorjs.io/
CollectionTranslatableContent.descriptionJson ● JSONString deprecated scalar
DEPRECATEDThis field will be removed in Saleor 4.0. Use the
descriptionfield instead.Description of the collection.
Rich text format. For reference see https://editorjs.io/
CollectionTranslatableContent.translation ● CollectionTranslation object
Returns translated collection fields for the given language code.
CollectionTranslatableContent.translation.languageCode●LanguageCodeEnum!non-null enumA language code to return the translation for collection.
CollectionTranslatableContent.collection ● Collection deprecated object
DEPRECATEDThis field will be removed in Saleor 4.0. Get model fields from the root level queries.
Represents a collection of products.
Interfaces
Node interface
An object with an ID
Implemented by
TranslatableItem union