updatePostedPositionProfile
MUTATION

Asynchronously updates a live job ad.The position profile's existing fields will be replaced with the provided input fields. This will update the live job ad under its current URL.Once the job ad has been updated a PositionProfileUpdated event will be emitted.

Arguments

NameDescription
The values to replace on a posted position profile.

Result

UpdatePostedPositionProfilePayload
NameDescription
Attributes of the updated position profile.

Sample

GraphQL
mutation ($input: UpdatePostedPositionProfileInput!) {
  updatePostedPositionProfile(input: $input) {
    positionProfile {
      profileId {
        value
      }
    }
  }
}