commerce/framework/saleor/utils/mutations/attach-checkout.ts
2021-06-09 17:02:13 +02:00

13 lines
233 B
TypeScript

export const AttachCheckout = /* GraphQl */ `
mutation AttachCheckout($checkoutId: ID!) {
checkoutCustomerAttach(checkoutId: $checkoutId) {
errors {
message
}
checkout {
id
}
}
}
`