Commit 5f5fe6f6 authored by Markus Koller's avatar Markus Koller

Merge branch '223812-fix-typo' into 'master'

Fix typo in description for VulnerabilityResolve mutation

See merge request gitlab-org/gitlab!42807
parents 2f70f5d9 b1c39089
......@@ -19238,7 +19238,7 @@ input VulnerabilityResolveInput {
clientMutationId: String
"""
ID of the vulnerability to be resolveed
ID of the vulnerability to be resolved
"""
id: VulnerabilityID!
}
......
......@@ -56345,7 +56345,7 @@
"inputFields": [
{
"name": "id",
"description": "ID of the vulnerability to be resolveed",
"description": "ID of the vulnerability to be resolved",
"type": {
"kind": "NON_NULL",
"name": null,
......@@ -14,7 +14,7 @@ module Mutations
argument :id,
::Types::GlobalIDType[::Vulnerability],
required: true,
description: 'ID of the vulnerability to be resolveed'
description: 'ID of the vulnerability to be resolved'
def resolve(id:)
vulnerability = authorized_find!(id: id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment