mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
import { cartFragment } from '../../utils/fragments/cart-fragment'
|
|
|
|
export const setOrderBillingAddress = /* GraphQL */ `
|
|
mutation setOrderBillingAddress ($input: CreateAddressInput!){
|
|
setOrderBillingAddress(input: $input) {
|
|
...Cart
|
|
... on NoActiveOrderError {
|
|
errorCode
|
|
message
|
|
}
|
|
}
|
|
}
|
|
${cartFragment}
|
|
`
|