Skip to content

WIP: Add graphQL mutation to set the epic of an issue

What does this MR do?

#36309 (closed)

Allows us to set the epic of an issue using GraphQL API endpoint issueSetEpic

mutation {
  issueSetEpic(input: {projectPath: "twitter/typeahead-js", iid: "9", epicId: 5}) {
    issue {
      iid
      epic {
        id
      }
    }
    epicIssue {
      epicIssueId
    }
  }
}

Screenshots

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Closes #36309 (closed)

Edited by Eugenia Grieff

Merge request reports