ArchiveCostCodeInput
InputAutogenerated input type of ArchiveCostCode
mutation { organization(id: $organizationId) { archiveCostCode } }
Example
mutation ArchiveCostCode(
$organizationId: ID!
$input: ArchiveCostCodeInput!
) {
organization(id: $organizationId) {
archiveCostCode(input: $input) {
costCode
errors
}
}
}