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
| Name | Description |
|---|---|
UpdatePostedPositionProfile_PositionProfileInput! | The values to replace on a posted position profile. |
Result
UpdatePostedPositionProfilePayload| Name | Description |
|---|---|
UpdatePostedPositionProfile_PositionProfilePayload! | Attributes of the updated position profile. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: UpdatePostedPositionProfileInput!) {
updatePostedPositionProfile(input: $input) {
positionProfile {
profileId {
value
}
}
}
}