Skip to main content

MenuItemTranslatableContent

Represents menu item's original translatable fields and related translations.

type MenuItemTranslatableContent implements Node {
id: ID!
menuItemId: ID!
name: String!
translation(languageCode: LanguageCodeEnum!): MenuItemTranslation
menuItem: MenuItem @deprecated
}

Fields

The ID of the menu item translatable content.

The ID of the menu item to translate.

Added in Saleor 3.14

Name of the menu item to translate.

Returns translated menu item fields for the given language code.

A language code to return the translation for menu item.

DEPRECATED

This field will be removed in Saleor 4.0. Get model fields from the root level queries.

Represents a single item of the related menu. Can store categories, collection or pages.

Interfaces

Node interface miscellaneous

An object with an ID

Member Of

MenuItemTranslation object

Implemented By

TranslatableItem union