ArchiveCostTypeInput
InputAutogenerated input type of ArchiveCostType
mutation { organization(id: $organizationId) { archiveCostType } }
Example
mutation ArchiveCostType(
$organizationId: ID!
$input: ArchiveCostTypeInput!
) {
organization(id: $organizationId) {
archiveCostType(input: $input) {
costType
errors
}
}
}