Given I have a Selectbox field "SOURCE" with values [A, B]
And a Selectbox or Multiselectbox field TARGET bound to user groups with values [project_members],
And there is a field dependency with:
- SOURCE[A] => TARGET[project_members]
- SOURCE[B] => TARGET[/None/]
When there is an artifact with { SOURCE: A, TARGET: project_members }
And we do a REST call PUT /artifact/:id with
{
values: [
{ field_id: <SOURCE id>, bind_values_ids: [ <B id> ] },
{ field_id: <TARGET id>, bind_values_ids: [ 100 ] }
]
}
Then we should not get any error.