ShippingMethodTranslatableContent
Represents shipping method's original translatable fields and related translations.
type ShippingMethodTranslatableContent implements Node {
id: ID!
shippingMethodId: ID!
name: String!
description: JSONString
translation(languageCode: LanguageCodeEnum!): ShippingMethodTranslation
shippingMethod: ShippingMethodType @deprecated
}
Fields
ShippingMethodTranslatableContent.id
● ID!
non-null scalar miscellaneous
The ID of the shipping method translatable content.
ShippingMethodTranslatableContent.shippingMethodId
● ID!
non-null scalar miscellaneous
The ID of the shipping method to translate.
Added in Saleor 3.14
ShippingMethodTranslatableContent.name
● String!
non-null scalar miscellaneous
Shipping method name to translate.
ShippingMethodTranslatableContent.description
● JSONString
scalar miscellaneous
Shipping method description to translate.
Rich text format. For reference see https://editorjs.io/
ShippingMethodTranslatableContent.translation
● ShippingMethodTranslation
object shipping
Returns translated shipping method fields for the given language code.
ShippingMethodTranslatableContent.translation.languageCode
●LanguageCodeEnum!
non-null enum miscellaneousA language code to return the translation for shipping method.
ShippingMethodTranslatableContent.shippingMethod
● ShippingMethodType
deprecated object shipping
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 miscellaneous
An object with an ID
Member Of
ShippingMethodTranslation
object
Implemented By
TranslatableItem
union