Creates a new position opening.Every position profile belongs to a position opening.
Up to 25 position profiles may belong to the same position opening.
Arguments
| Name | Description |
|---|---|
CreatePositionOpening_PositionOpeningInput! | The details of the position opening to be created. |
Result
CreatePositionOpeningPayload!| Name | Description |
|---|---|
PositionOpening! | The details of the created position opening. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: CreatePositionOpeningInput!) {
createPositionOpening(input: $input) {
positionOpening {
documentId {
value
}
seekPartnerMetadata
}
}
}