Skip to content

Allow to mark a requirement as satisfied

Felipe Cardozo requested to merge issue_218607_be into master

What does this MR do?

Allow to mark a requirement as satisfied using GraphQL.

Sample mutation

mutation {
  updateRequirement( input: { 
    iid: "1", 
    title: "new title",
    lastTestReportState: FAILED, 
    projectPath: "root/ouch"
  }) {
    requirement {
      title
      lastTestReportState
    }
  }
}

backend part of #218607 (closed)

Edited by Felipe Cardozo

Merge request reports

Loading