UnarchiveCostTypePayload
ObjectAutogenerated return type of UnarchiveCostType.
mutation { organization(id: $organizationId) { unarchiveCostType } }
Example
mutation UnarchiveCostType(
$organizationId: ID!
$input: UnarchiveCostTypeInput!
) {
organization(id: $organizationId) {
unarchiveCostType(input: $input) {
costType
errors
}
}
}