Skip to main content
Version: 3.x

ShippingMethodTranslatableContent

Represents shipping method's original translatable fields and related translations.

type ShippingMethodTranslatableContent implements Node {
id: ID!
name: String!
description: JSONString
translation(languageCode: LanguageCodeEnum!): ShippingMethodTranslation
shippingMethod: ShippingMethodType @deprecated
}

Fields

ShippingMethodTranslatableContent.id ● ID! non-null scalar

The ID of the shipping method translatable content.

ShippingMethodTranslatableContent.name ● String! non-null scalar

Shipping method name to translate.

ShippingMethodTranslatableContent.description ● JSONString scalar

Shipping method description to translate.

Rich text format. For reference see https://editorjs.io/

ShippingMethodTranslatableContent.translation ● ShippingMethodTranslation object

Returns translated shipping method fields for the given language code.

ShippingMethodTranslatableContent.translation.languageCode ● LanguageCodeEnum! non-null enum

A language code to return the translation for shipping method.

ShippingMethodTranslatableContent.shippingMethod ● ShippingMethodType deprecated object

DEPRECATED

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

Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers.

Requires MANAGE_SHIPPINGpermission.

Interfaces

Node interface

An object with an ID

Implemented by

TranslatableItem union


Was this page helpful?