mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 22:11:22 +00:00
22 lines
426 B
TypeScript
22 lines
426 B
TypeScript
export const setOrderShippingAddressMutation = /* GraphQL */ `
|
|
mutation setOrderShippingAddress($input: CreateAddressInput!) {
|
|
setOrderShippingAddress(input: $input) {
|
|
__typename
|
|
...on Order {
|
|
id
|
|
state
|
|
customer {
|
|
id
|
|
}
|
|
totalQuantity
|
|
lines {
|
|
id
|
|
}
|
|
}
|
|
...on ErrorResult {
|
|
errorCode
|
|
message
|
|
}
|
|
}
|
|
}
|
|
` |