Change vulnerabilityFindingDismiss mutation to use uuid argument
requested to merge 360478-change-vulnerabilityfindingdismiss-mutation-to-accept-uuid-argument into master
What does this MR do and why?
This MR adds the uuid
argument for the vulnerabilityFindingDismiss mutation as the preferred search parameter and deprecates the use of id
Screenshots or screen recordings
These are strongly recommended to assist reviewers and reduce the time to merge your change.
How to set up and validate locally
- Run a pipeline to generate vulnerabilities
- Get a finding uuid
query {
project(fullPath:"<project path>") {
pipelines(first:1) {
nodes {
securityReportFindings(first:1) {
nodes {
uuid
}
}
}
}
}
}
mutation {
vulnerabilityFindingDismiss(input:{uuid:"<finding uuid>"}) {
finding {
title
}
}
}
MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
-
I have evaluated the MR acceptance checklist for this MR.
Related to #360478 (closed)
Edited by Jonathan Schafer