2023-05-31 17:42:21 +02:00

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
}
}
}
}
`;