PutCostTypeInput
InputAutogenerated input type of PutCostType
mutation { organization(id: $organizationId) { putCostType } }
Example
mutation PutCostType(
$organizationId: ID!
$input: PutCostTypeInput!
) {
organization(id: $organizationId) {
putCostType(input: $input) {
costType
errors
}
}
}