Skip to content

Change IssueSetEpic mutation to make epic_id argument not required

What does this MR do?

Related to #235968 (closed)

Changes the existing mutation IssueSetEpic so the epic_id argument can have the value null or be missing. In that case, any existing epic assigned to the issue will be removed. We have similar behaviour in the mutation IssueSetIteration.

Example Query

mutation{
  issueSetEpic(input: {projectPath: "gitlab-org/gitlab-shell", iid: "32", epicId: null}) {
    issue {
      iid
      epic {
        id
        title
      }
    }
  }
}

Response

{
  "data": {
    "issueSetEpic": {
      "issue": {
        "iid": "32",
        "epic": null
      }
    }
  }
}

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Eugenia Grieff

Merge request reports

Loading