mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 00:46:59 +00:00
13 lines
233 B
TypeScript
13 lines
233 B
TypeScript
export const CheckoutAttach = /* GraphQl */ `
|
|
mutation CheckoutAttach($checkoutId: ID!) {
|
|
checkoutCustomerAttach(checkoutId: $checkoutId) {
|
|
errors {
|
|
message
|
|
}
|
|
checkout {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
`
|