mirror of
https://github.com/vercel/commerce.git
synced 2025-05-23 01:46:58 +00:00
21 lines
365 B
TypeScript
21 lines
365 B
TypeScript
export const getCheckoutQuery = /* GraphQL */ `
|
|
query getCheckout($entityId: String) {
|
|
site {
|
|
checkout(entityId: $entityId) {
|
|
subtotal {
|
|
currencyCode
|
|
value
|
|
}
|
|
taxTotal {
|
|
currencyCode
|
|
value
|
|
}
|
|
grandTotal {
|
|
currencyCode
|
|
value
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|