checkoutShippingLineUpdateMutation top-level constant
String
const checkoutShippingLineUpdateMutation
Mutation to update the shipping line of a checkout
Implementation
const String checkoutShippingLineUpdateMutation = r'''
mutation checkoutShippingLineUpdate($checkoutId: ID!, $shippingRateHandle: String!) {
checkoutShippingLineUpdate(checkoutId: $checkoutId, shippingRateHandle: $shippingRateHandle) {
checkout {
id
ready
email
appliedGiftCards {
amountUsedV2 {
amount
currencyCode
}
balanceV2 {
amount
currencyCode
}
id
}
requiresShipping
shippingLine {
handle
priceV2 {
amount
currencyCode
}
title
}
availableShippingRates {
ready
shippingRates {
handle
title
priceV2 {
amount
currencyCode
}
}
}
shippingAddress {
address1
address2
city
company
country
countryCodeV2
firstName
formattedArea
id
lastName
latitude
longitude
name
phone
province
provinceCode
zip
}
completedAt
createdAt
currencyCode
lineItems(first: 10) {
edges {
node {
id
quantity
title
customAttributes {
key
value
}
discountAllocations {
allocatedAmount {
amount
currencyCode
}
}
variant {
id
priceV2 {
amount
currencyCode
}
title
image {
altText
originalSrc
id
}
compareAtPriceV2 {
amount
currencyCode
}
weight
weightUnit
availableForSale
sku
requiresShipping
}
}
}
}
note
webUrl
updatedAt
totalTaxV2 {
amount
currencyCode
}
totalPriceV2 {
amount
currencyCode
}
taxesIncluded
taxExempt
subtotalPriceV2 {
amount
currencyCode
}
orderStatusUrl
order {
id
}
}
checkoutUserErrors {
code
field
message
}
}
}
''';