Skip to content

Resolve "Introduce new graphql attribute for mergeability"

What does this MR do and why?

Introduces a new attribute to graphql so that the frontend can do less calculations to work out the correct status.


  query A($fullPath: ID!, $iid: String!){
    project(fullPath: $fullPath) {    
      id
      mergeRequest(iid: $iid) {
       detailedMergeStatus
      }
   }
}

Related to #367891 (closed)

Edited by Marc Shaw

Merge request reports