Skip to main content
Version: 3.x

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

DEPRECATED

This field will be removed in Saleor 4.0. Use the description field 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 enum

A language code to return the translation for collection.

CollectionTranslatableContent.collection ● Collection deprecated object

DEPRECATED

This 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


Was this page helpful?