Deletes an empty position opening.Each position profile that belongs to a position opening must be deleted before the position opening can be deleted.
Arguments
| Name | Description |
|---|---|
DeletePositionOpening_PositionOpeningInput! | The details of the position opening to be deleted. |
Result
DeletePositionOpeningPayload| Name | Description |
|---|---|
PositionOpening! | The details of the deleted position opening. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: DeletePositionOpeningInput!) {
deletePositionOpening(input: $input) {
positionOpening {
documentId {
value
}
seekPartnerMetadata
}
}
}