getCheckoutInfo top-level constant
String
const getCheckoutInfo
Query to get checkout info
Implementation
const String getCheckoutInfo = r'''
query($id: ID!){
node(id: $id) {
... on 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
}
}
}
}
''';