> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/products/llms.txt)
> Source: https://docs.saleor.io/api-reference/products/objects/collection-translatable-content

# CollectionTranslatableContent Object

Represents collection's original translatable fields and related translations.

```graphql
type CollectionTranslatableContent implements Node {
  id: ID!
  collectionId: ID!
  seoTitle: String
  seoDescription: String
  slug: String
  name: String!
  description: JSONString
  descriptionJson: JSONString @deprecated
  translation(languageCode: LanguageCodeEnum!): CollectionTranslation
  collection: Collection @deprecated
}
```

<a id="fields"></a>

### Fields

<a id="id"></a>

#### [`id`](#id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

The ID of the collection translatable content.

<a id="collection-id"></a>

#### [`collectionId`](#collection-id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

The ID of the collection to translate.

<a id="seo-title"></a>

#### [`seoTitle`](#seo-title) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

SEO title to translate.

<a id="seo-description"></a>

#### [`seoDescription`](#seo-description) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

SEO description to translate.

<a id="slug"></a>

#### [`slug`](#slug) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Slug to translate

Added in Saleor 3.21

<a id="name"></a>

#### [`name`](#name) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

Collection's name to translate.

<a id="description"></a>

#### [`description`](#description) ● [`JSONString`](/api-reference/miscellaneous/scalars/jsonstring.md)

Collection's description to translate.

Rich text format. For reference see [https://editorjs.io/](https://editorjs.io/)

<a id="translation"></a>

#### [`translation`](#translation) ● [`CollectionTranslation`](/api-reference/products/objects/collection-translation.md)

Returns translated collection fields for the given language code.

<a id="collection-translatable-content-translation-language-code"></a>

##### [`languageCode`](#collection-translatable-content-translation-language-code) ● [`LanguageCodeEnum!`](/api-reference/miscellaneous/enums/language-code-enum.md)

A language code to return the translation for collection.

Show deprecatedHide deprecated

<a id="description-json"></a>

#### [`descriptionJson`](#description-json) ● [`JSONString`](/api-reference/miscellaneous/scalars/jsonstring.md)

DEPRECATED

Use the `description` field instead.

Description of the collection.

Rich text format. For reference see [https://editorjs.io/](https://editorjs.io/)

<a id="collection"></a>

#### [`collection`](#collection) ● [`Collection`](/api-reference/products/objects/collection.md)

DEPRECATED

Get model fields from the root level queries.

Represents a collection of products.

<a id="interfaces"></a>

### Interfaces

<a id="node"></a>

#### [`Node`](/api-reference/miscellaneous/interfaces/node.md)

An object with an ID

<a id="member-of"></a>

### Member Of

[`CollectionTranslation`](/api-reference/products/objects/collection-translation.md) object

<a id="implemented-by"></a>

### Implemented By

[`TranslatableItem`](/api-reference/miscellaneous/unions/translatable-item.md) union
