mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 06:01:21 +00:00
20 lines
378 B
TypeScript
20 lines
378 B
TypeScript
import * as fragment from '../fragments'
|
|
|
|
export const CheckoutLineDelete = /* GraphQL */ `
|
|
mutation CheckoutLineDelete($checkoutId: ID!, $lineId: ID!) {
|
|
checkoutLineDelete(
|
|
checkoutId: $checkoutId
|
|
lineId: $lineId
|
|
) {
|
|
errors {
|
|
code
|
|
field
|
|
message
|
|
}
|
|
checkout {
|
|
${fragment.CheckoutDetails}
|
|
}
|
|
}
|
|
}
|
|
`
|