PutRevenueCodeInput
InputAutogenerated input type of PutRevenueCode
mutation { organization(id: $organizationId) { putRevenueCode } }
Example
mutation PutRevenueCode(
$organizationId: ID!
$input: PutRevenueCodeInput!
) {
organization(id: $organizationId) {
putRevenueCode(input: $input) {
costCode
errors
}
}
}