mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
15 lines
390 B
TypeScript
15 lines
390 B
TypeScript
export const updateCustomerAddress = /* GraphQL */ `
|
|
mutation updateCustomerAddress($input: UpdateAddressInput!){
|
|
updateCustomerAddress(input: $input){
|
|
__typename
|
|
...on Address{
|
|
id
|
|
streetLine1
|
|
city
|
|
postalCode
|
|
province
|
|
}
|
|
}
|
|
}
|
|
`
|