deleteCandidateProcessHistoryItem
MUTATION

Deletes a candidate process history item from SEEK's systems.

Arguments

Name
Description
The details of the CandidateProcessHistoryItem to be deleted.

Result

DeleteCandidateProcessHistoryItemPayload
Name
Description
candidateProcessHistoryItem* 
CandidateProcessHistoryItem!
The details of the CandidateProcessHistoryItem that was deleted.

Sample

GraphQL
mutation ($input: DeleteCandidateProcessHistoryItemInput!) {
  deleteCandidateProcessHistoryItem(input: $input) {
    candidateProcessHistoryItem {
      id {
        value
      }
    }
  }
}