Skip to content

Add WorkItemAddClosingMergeRequest mutation

Mario Celi requested to merge 454136-add-closing-merge-request-mutation into master

What does this MR do and why?

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

How to set up and validate locally

You can perform a query like the following in GraphiQL http://localhost:3000/-/graphql-explorer

mutation {
  workItemAddClosingMergeRequest(
    input: {id: "gid://gitlab/WorkItem/<ID>", contextNamespacePath: "flightjs/flight", mergeRequestReference: "!9"}
  ) {
    errors
    workItem {
      widgets {
        type
        ... on WorkItemWidgetDevelopment {
          closingMergeRequests {
            nodes {
              fromMrDescription
              id
              mergeRequest {
                id
                iid
              }
            }
          }
        }
      }
    }
    closingMergeRequest {
      fromMrDescription
      mergeRequest {
        id
        iid
      }
    }
  }
}

Related to #454136 (closed)

Edited by Mario Celi

Merge request reports