createPositionOpening
MUTATION

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
The details of the position opening to be created.

Result

CreatePositionOpeningPayload!
Name
Description
positionOpening* 
PositionOpening!
The details of the created position opening.

Sample

GraphQL
mutation ($input: CreatePositionOpeningInput!) {
  createPositionOpening(input: $input) {
    positionOpening {
      documentId {
        value
      }
      seekPartnerMetadata
    }
  }
}