Skip to content

Allow to update issue state on GraphQL

What does this MR do?

Allow to update issue state using GraphQL

Example:

mutation {
  updateIssue(input: {
    iid: "1",
    projectPath: "root/test",
    stateEvent: CLOSE
  }) {
    issue {
      title
      state
    }
  }
}

related to #233479 (closed)

Edited by Felipe Cardozo

Merge request reports