diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md index 115eefeecd5cba9fb31cac9aa84812b6352f07ff..7d2b42b4c6691c2eed60415d73c3ae84b340e81d 100644 --- a/doc/api/graphql/reference/index.md +++ b/doc/api/graphql/reference/index.md @@ -8834,6 +8834,8 @@ Input type: `VulnerabilitiesDismissInput` ### `Mutation.vulnerabilitiesRemoveAllFromProject` +Remove all Vulnerabilities and related information from a given project. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/412602) in GitLab 16.7. + Input type: `VulnerabilitiesRemoveAllFromProjectInput` #### Arguments diff --git a/ee/app/graphql/mutations/vulnerabilities/remove_all_from_project.rb b/ee/app/graphql/mutations/vulnerabilities/remove_all_from_project.rb index 7144b7eee90e4a6830d3b57a5af1eccbad3bb6a6..8dc81d8f9462796f5942ae273658c56557ca6449 100644 --- a/ee/app/graphql/mutations/vulnerabilities/remove_all_from_project.rb +++ b/ee/app/graphql/mutations/vulnerabilities/remove_all_from_project.rb @@ -4,6 +4,8 @@ module Mutations module Vulnerabilities class RemoveAllFromProject < BaseMutation graphql_name 'VulnerabilitiesRemoveAllFromProject' + description 'Remove all Vulnerabilities and related information from a given project. ' \ + '[Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/412602) in GitLab 16.7' argument :project_ids, [::Types::GlobalIDType[::Project]],