commerce/framework/saleor/utils/mutations/associate-customer-with-checkout.ts

13 lines
256 B
TypeScript

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