Updates a candidate process history item.
Arguments
| Name | Description |
|---|---|
UpdateCandidateProcessHistoryItem_CandidateProcessHistoryItemInput! | The details of the CandidateProcessHistoryItem to be updated. |
Result
UpdateCandidateProcessHistoryItemPayload| Name | Description |
|---|---|
CandidateProcessHistoryItem! | The details of the CandidateProcessHistoryItem that was updated. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: UpdateCandidateProcessHistoryItemInput!) {
updateCandidateProcessHistoryItem(input: $input) {
candidateProcessHistoryItem {
id {
value
}
}
}
}