mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
16 lines
375 B
TypeScript
16 lines
375 B
TypeScript
import { cartPayloadFragment } from '../queries/get-cart-query'
|
|
|
|
const updateFulfillmentOptions = /* GraphQL */ `
|
|
mutation updateFulfillmentOptionsForGroup(
|
|
$input: UpdateFulfillmentOptionsForGroupInput!
|
|
) {
|
|
updateFulfillmentOptionsForGroup(input: $input) {
|
|
cart {
|
|
${cartPayloadFragment}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
export default updateFulfillmentOptions
|