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 { ...@@ -19177,7 +19177,7 @@ input VulnerabilityResolveInput {
clientMutationId: String clientMutationId: String
""" """
ID of the vulnerability to be resolveed ID of the vulnerability to be resolved
""" """
id: VulnerabilityID! id: VulnerabilityID!
} }
......
...@@ -56134,7 +56134,7 @@ ...@@ -56134,7 +56134,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "ID of the vulnerability to be resolveed", "description": "ID of the vulnerability to be resolved",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -14,7 +14,7 @@ module Mutations ...@@ -14,7 +14,7 @@ module Mutations
argument :id, argument :id,
::Types::GlobalIDType[::Vulnerability], ::Types::GlobalIDType[::Vulnerability],
required: true, required: true,
description: 'ID of the vulnerability to be resolveed' description: 'ID of the vulnerability to be resolved'
def resolve(id:) def resolve(id:)
vulnerability = authorized_find!(id: 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