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