mutation

removeAddress

Delete an existing customer address from the system.
Arguments
ID allotted to the selected address.
Response
Id of the address.
is_deleted
Boolean
Deleted flag in delete address response states whether the address was deleted or not.
Mutation
1mutation removeAddress($id: String) {
2 removeAddress(id: $id) {
3 id
4 is_deleted
5 }
6}
Try it
Input Variables
1{
2 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e"
3}
Response
1{
2 "removeAddress": {
3 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
4 "is_deleted": true
5 }
6}