updatePositionProfileFromDraft
MUTATION

Asynchronously updates an existing position profile from an existing draft.

Arguments

NameDescription
The information of the draft position required for the posting.
The information of the position profile to be updated.

Result

UpdatePositionProfileFromDraftPayload
NameDescription
Attributes of the newly created position profile for the job ad.

Sample

GraphQL
mutation ($input: UpdatePositionProfileFromDraftInput!) {
  updatePositionProfileFromDraft(input: $input) {
    positionProfile {
      profileId {
        value
      }
    }
  }
}