Skip to content

Update mutation for work item assignees

What does this MR do and why?

Add a GraphQL mutation to update a work item's assignees

How to set up and validate locally

Sample query I use:

mutation WorkItemUpdate {
  workItemUpdate(input: {id: "gid://gitlab/WorkItem/503", assigneesWidget: {assigneeIds: ["gid://gitlab/User/1"]}})  {
    workItem {
      id
      __typename
    }
  }
}

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Related to #334810 (closed)

Edited by Heinrich Lee Yu

Merge request reports