CompanyAddressDeleteInput
Input data for deleting a company address.
Contains both address ID and company ID to ensure proper ownership validation before deletion.
input CompanyAddressDeleteInput {
id: Int!
companyId: Int!
}
Fields
CompanyAddressDeleteInput.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 company.
CompanyAddressDeleteInput.companyId
● Int!
non-null scalar
Unique identifier of the company that owns this address.
Must be a positive integer representing a valid company ID in the system. Used for ownership validation.
Member Of
companyAddressDelete
mutation