Commit b1c39089 authored by Alan Paruszewski's avatar Alan Paruszewski

Fix typo in description for VulnerabilityResolve mutation

This change fixes small typo in VulnerabilityResolve GraphQL mutation
parent e17236c8
......@@ -19177,7 +19177,7 @@ input VulnerabilityResolveInput {
clientMutationId: String
"""
ID of the vulnerability to be resolveed
ID of the vulnerability to be resolved
"""
id: VulnerabilityID!
}
......
......@@ -56134,7 +56134,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