PageTranslation
Represents page translations.
type PageTranslation implements Node {
id: ID!
language: LanguageDisplay!
seoTitle: String
seoDescription: String
title: String
content: JSONString
contentJson: JSONString @deprecated
translatableContent: PageTranslatableContent
}
Fields
PageTranslation.id
● ID!
non-null scalar miscellaneous
The ID of the page translation.
PageTranslation.language
● LanguageDisplay!
non-null object miscellaneous
Translation language.
PageTranslation.seoTitle
● String
scalar miscellaneous
Translated SEO title.
PageTranslation.seoDescription
● String
scalar miscellaneous
Translated SEO description.
PageTranslation.title
● String
scalar miscellaneous
Translated page title.
PageTranslation.content
● JSONString
scalar miscellaneous
Translated content of the page.
Rich text format. For reference see https://editorjs.io/
PageTranslation.contentJson
● JSONString
deprecated scalar miscellaneous
DEPRECATEDThis field will be removed in Saleor 4.0. Use the
content
field instead.Translated description of the page.
Rich text format. For reference see https://editorjs.io/
PageTranslation.translatableContent
● PageTranslatableContent
object pages
Represents the page fields to translate.
Added in Saleor 3.14
Interfaces
Node
interface miscellaneous
An object with an ID
Member Of
Page
object ● PageTranslatableContent
object
Implemented By
TranslationTypes
union