DeleteCompanyPayload
ObjectAutogenerated return type of DeleteCompany.
mutation { organization(id: $organizationId) { deleteCompany } }
Example
mutation DeleteCompany(
$organizationId: ID!
$input: DeleteCompanyInput!
) {
organization(id: $organizationId) {
deleteCompany(input: $input) {
errors
}
}
}