Deletes a candidate process history item from SEEK's systems.
Arguments
| Name | Description |
|---|---|
DeleteCandidateProcessHistoryItem_CandidateProcessHistoryItemInput! | The details of the CandidateProcessHistoryItem to be deleted. |
Result
DeleteCandidateProcessHistoryItemPayload| Name | Description |
|---|---|
CandidateProcessHistoryItem! | The details of the CandidateProcessHistoryItem that was deleted. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: DeleteCandidateProcessHistoryItemInput!) {
deleteCandidateProcessHistoryItem(input: $input) {
candidateProcessHistoryItem {
id {
value
}
}
}
}