Arguments
id
StringID allotted to the selected address.
Mutation
1mutation removeAddress($id: String) {2 removeAddress(id: $id) {3 id4 is_deleted5 }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": true5 }6}
Was this section helpful?