SetOrganizationRevenueCodesEnabledInput
InputAutogenerated input type of SetOrganizationRevenueCodesEnabled
mutation { organization(id: $organizationId) { setOrganizationRevenueCodesEnabled } }
Example
mutation SetOrganizationRevenueCodesEnabled(
$organizationId: ID!
$input: SetOrganizationRevenueCodesEnabledInput!
) {
organization(id: $organizationId) {
setOrganizationRevenueCodesEnabled(input: $input) {
errors
}
}
}