mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 00:46:59 +00:00
50 lines
677 B
TypeScript
50 lines
677 B
TypeScript
export const CheckoutDetails = /* GraphQL */ `
|
|
fragment CheckoutDetails on Checkout {
|
|
id
|
|
token
|
|
created
|
|
totalPrice {
|
|
currency
|
|
gross {
|
|
amount
|
|
}
|
|
}
|
|
subtotalPrice {
|
|
currency
|
|
gross {
|
|
amount
|
|
}
|
|
}
|
|
|
|
lines {
|
|
id
|
|
variant {
|
|
id
|
|
name
|
|
sku
|
|
product {
|
|
name
|
|
slug
|
|
}
|
|
media {
|
|
url
|
|
}
|
|
pricing {
|
|
price {
|
|
gross {
|
|
amount
|
|
}
|
|
}
|
|
}
|
|
}
|
|
quantity
|
|
totalPrice {
|
|
currency
|
|
gross {
|
|
amount
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|