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 enumA language code to return the translation for shipping method.
ShippingMethodTranslatableContent.shippingMethod ● ShippingMethodType deprecated object
DEPRECATEDThis 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.
Interfaces
Node interface
An object with an ID
Implemented by
TranslatableItem union