CustomerAddressDeleteInput
Input data for deleting a customer address.
Contains both address ID and customer ID to ensure proper ownership validation before deletion.
input CustomerAddressDeleteInput {
id: Int!
customerId: Int!
}
Fields
CustomerAddressDeleteInput.id
● Int!
non-null scalar
Unique identifier of the address to be deleted.
Must be a positive integer representing a valid address ID that belongs to the specified customer.
CustomerAddressDeleteInput.customerId
● Int!
non-null scalar
Unique identifier of the customer who owns this address.
Must be a positive integer representing a valid customer ID in the system. Used for ownership validation.
Member Of
customerAddressDelete
mutation