commerce/packages/saleor/utils/mutations/checkout-attach.ts
2022-01-14 18:29:24 -05:00

13 lines
233 B
TypeScript

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