OBJECT
ShippingRate
A shipping rate defined in the marketplace
link GraphQL Schema definition
- type ShippingRate implements Node {
- ID! :
- # The name used to identify the shipping rate
- String! :
- # Denominated in cents.
- Int! @deprecated( reason: "Prices can be larger than is representable by a graphql integer. Use the string version instead. This field will be removed no earlier than July 1st, 2025.
" ) :
- # In string with currency symbol.
- #
- # Arguments
- # currency: Currency in which to display money fields. Defaults
- # to the currency of the marketplace's home country.
- String): String! ( :
- # The seller who created the shipping rate. If null then it was created by the
- # marketplace owner
- Seller :
- }