When marking an opportunity remote, it will now accept the `remote_experience` argument in `opportunityMarkRemote` mutation which will contain the following three inputs,
- remote_experience_duration
- remote_experience_salary
- remote_experience_additional_details
All the arguments are required.
The exposed field are `remote_experience_duration`, `remote_experience_salary`, `remote_experience_additional_details`.
Sample request,
mutation{
opportunityMarkRemote(id: 14620, remote_experience: {remote_experience_duration: "<div>Total duration will be of 6 months</div>", remote_experience_salary: "<div>$200 and $300 per month for remote and on-field work resp.</div>", remote_experience_additional_details: "<ol><li>Minimum of 2 months of on-field work is mandatory</li><li>Have a bank account which accepts international payments</li></ol>"}){
id
remote_opportunity
remote_experience_duration
remote_experience_salary
remote_experience_additional_details
}
}