OBJECT
CartItemDeliveryMethodGroup
A grouping of cart items that all have the same delivery method. Most of the fields are aggregations of individual cart item fields.
link GraphQL Schema definition
- type CartItemDeliveryMethodGroup {
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): CartItemConnection! ( :
- DeliveryMethodEnum! :
- # Total amount of monetary discounts. 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.
" ) :
- # Total amount of monetary discounts. 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! ( :
- Boolean! :
- # For deliverable items, whether the buyer's country matches the seller's country
- # for all associated cart items.
- Boolean! :
- # Sum of the shipping costs of the cart items. 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.
" ) :
- # Sum of the shipping costs of the cart items. 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! ( :
- # General description of the delivery method and estimated time in transit for the
- # shipment.
- String! :
- # List of descriptions of potential or applied shipping discounts for this group
- # of cart items. Includes any relevant promotions and information about free
- # shipping when available.
- #
- # Arguments
- # currency: Currency in which to display any monetary discounts.
- # Defaults to the currency of the marketplace's home country.
- String): [String!]! ( :
- # For cart item groups that have a shipping discount or free shipping, this text
- # can replace the shipping cost in the list of line items.
- String :
- # Message for user, informing them of the location from where their purchase will
- # be shipped if applicable
- #
- # Arguments
- # useCity: Whether to include the name of the city that the item
- # is shipping from in the message.
- Boolean): String ( :
- # Sum of the tax amount for the shipping cost. Whether this amount is included in
- # the base shipping cost depends on the website's home country (i.e. Australia's
- # GST is included in an item's price, but sales tax in the U.S. is added on
- # separately). 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.
" ) :
- # Sum of the tax amount for the shipping cost. Whether this amount is included in
- # the base shipping cost depends on the website's home country (i.e. Australia's
- # GST is included in an item's price, but sales tax in the U.S. is added on
- # separately). 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! ( :
- # Sum of the cost of the cart items (price x quantity), plus any additional fees
- # applied by the seller. 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.
" ) :
- # List of descriptions of promotional discounts applied to the subtotal of this
- # group of cart items
- #
- # Arguments
- # currency: Currency in which to display any monetary discounts.
- # Defaults to the currency of the marketplace's home country.
- String): [String!]! ( :
- # Sum of the cost of the cart items (price x quantity), plus any additional fees
- # applied by the seller. 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! ( :
- # Sum of the tax of the cart items. 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.
" ) :
- # Sum of the tax of the cart items. 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! ( :
- # Sum of the total cost of the cart items, which includes subtotals and cost of
- # shipping if applicable. 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.
" ) :
- # Sum of the total cost of the cart items, which includes subtotals and cost of
- # shipping if applicable. 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! ( :
- }