32 lines
769 B
Ruby
32 lines
769 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Mutations
|
|
module Metrics
|
|
module Dashboard
|
|
module Annotations
|
|
class Delete < Base
|
|
graphql_name 'DeleteAnnotation'
|
|
|
|
authorize :delete_metrics_dashboard_annotation
|
|
|
|
argument :id,
|
|
GraphQL::ID_TYPE,
|
|
required: true,
|
|
description: 'The global ID of the annotation to delete'
|
|
|
|
def resolve(id:)
|
|
annotation = authorized_find!(id: id)
|
|
|
|
result = ::Metrics::Dashboard::Annotations::DeleteService.new(context[:current_user], annotation).execute
|
|
|
|
errors = Array.wrap(result[:message])
|
|
|
|
{
|
|
errors: errors
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|