Class: Mutations::Achievements::DeleteUserAchievement
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::RelayClassicMutation
- BaseMutation
- Mutations::Achievements::DeleteUserAchievement
- Defined in:
- app/graphql/mutations/achievements/delete_user_achievement.rb
Constant Summary
Constants included from Gitlab::Graphql::Authorize::AuthorizeResource
Gitlab::Graphql::Authorize::AuthorizeResource::ConfigurationError, Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR
Constants inherited from BaseMutation
Instance Method Summary collapse
Methods included from Gitlab::Graphql::Authorize::AuthorizeResource
#authorize!, #authorized_find!, #authorized_resource?, #find_object, #raise_resource_not_available_error!
Methods inherited from BaseMutation
#api_user?, authorization, authorization_scopes, authorized?, authorizes_object?, #current_user, #errors_on_object, #load_application_object, #read_only?, #ready?, #unauthorized_object
Instance Method Details
#resolve(args) ⇒ Object
21 22 23 24 25 26 |
# File 'app/graphql/mutations/achievements/delete_user_achievement.rb', line 21 def resolve(args) user_achievement = (id: args[:user_achievement_id]) result = ::Achievements::DestroyUserAchievementService.new(current_user, user_achievement).execute { user_achievement: result.payload, errors: result.errors } end |