CategoryTranslatableContent
No description
type CategoryTranslatableContent implements Node {
id: ID!
seoTitle: String
seoDescription: String
name: String!
description: JSONString
descriptionJson: JSONString @deprecated
translation(languageCode: LanguageCodeEnum!): CategoryTranslation
category: Category @deprecated
}
Fields
CategoryTranslatableContent.id
● ID!
non-null scalar
CategoryTranslatableContent.seoTitle
● String
scalar
CategoryTranslatableContent.seoDescription
● String
scalar
CategoryTranslatableContent.name
● String!
non-null scalar
CategoryTranslatableContent.description
● JSONString
scalar
Description of the category.
Rich text format. For reference see https://editorjs.io/
CategoryTranslatableContent.descriptionJson
● JSONString
deprecated scalar
DEPRECATEDThis field will be removed in Saleor 4.0. Use the
description
field instead.Description of the category.
Rich text format. For reference see https://editorjs.io/
CategoryTranslatableContent.translation
● CategoryTranslation
object
Returns translated category fields for the given language code.
CategoryTranslatableContent.translation.languageCode
●LanguageCodeEnum!
non-null enumA language code to return the translation for category.
CategoryTranslatableContent.category
● Category
deprecated object
DEPRECATEDThis field will be removed in Saleor 4.0. Get model fields from the root level queries.
Represents a single category of products.
Interfaces
Node
interface
An object with an ID
Implemented by
TranslatableItem
union
Was this page helpful?