feat: get-edit-user-info

This commit is contained in:
Quangnhankie
2021-10-06 12:10:04 +07:00
parent a2cec5788e
commit dcfa1a1ece
17 changed files with 380 additions and 96 deletions

View File

@@ -0,0 +1,14 @@
export const updateCustomerAddress = /* GraphQL */ `
mutation updateCustomerAddress($input: UpdateAddressInput!){
updateCustomerAddress(input: $input){
__typename
...on Address{
id
streetLine1
city
postalCode
province
}
}
}
`