Class: Mutations::Metrics::Dashboard::Annotations::Delete
- Inherits:
-
Base
- Object
- GraphQL::Schema::RelayClassicMutation
- BaseMutation
- Base
- Mutations::Metrics::Dashboard::Annotations::Delete
- Defined in:
- app/graphql/mutations/metrics/dashboard/annotations/delete.rb
Constant Summary
Constants inherited from BaseMutation
Constants included from Gitlab::Graphql::Authorize::AuthorizeResource
Gitlab::Graphql::Authorize::AuthorizeResource::ConfigurationError, Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR
Instance Method Summary collapse
Methods inherited from BaseMutation
#api_user?, authorization, authorized?, authorizes_object?, #current_user, #errors_on_object, #load_application_object, #ready?
Methods included from Gitlab::Graphql::Authorize::AuthorizeResource
#authorize!, #authorized_find!, #authorized_resource?, #find_object, #raise_resource_not_available_error!
Methods included from Gitlab::Graphql::GlobalIDCompatibility
Instance Method Details
#resolve(id:) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 |
# File 'app/graphql/mutations/metrics/dashboard/annotations/delete.rb', line 16 def resolve(id:) annotation = (id: id) result = ::Metrics::Dashboard::Annotations::DeleteService.new(context[:current_user], annotation).execute errors = Array.wrap(result[:message]) { errors: errors } end |