commerce/framework/shopify/utils/queries/get-checkout-query.ts
2021-02-22 14:06:34 +02:00

48 lines
733 B
TypeScript

export const checkoutDetailsFragment = `
id
webUrl
subtotalPrice
totalTax
totalPrice
currencyCode
completedAt
createdAt
taxesIncluded
lineItems(first: 250) {
pageInfo {
hasNextPage
hasPreviousPage
}
edges {
node {
id
title
variant {
id
sku
title
image {
originalSrc
altText
width
height
}
price
}
quantity
}
}
}
`
const getCheckoutQuery = /* GraphQL */ `
query($checkoutId: ID!) {
node(id: $checkoutId) {
... on Checkout {
${checkoutDetailsFragment}
}
}
}
`
export default getCheckoutQuery