commerce/framework/saleor/utils/queries/get-checkout-query.ts
2021-06-09 17:02:09 +02:00

16 lines
274 B
TypeScript

export const checkoutDetailsFragment = `
id
token
`
const getCheckoutQuery = /* GraphQL */ `
query($checkoutId: UUID!) {
checkout(token: $checkoutId) {
... on Checkout {
${checkoutDetailsFragment}
}
}
}
`
export default getCheckoutQuery