Class: Mutations::Ci::Runner::BulkDelete
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::RelayClassicMutation
- BaseMutation
- Mutations::Ci::Runner::BulkDelete
- Defined in:
- app/graphql/mutations/ci/runner/bulk_delete.rb
Constant Summary collapse
- RunnerID =
::Types::GlobalIDType[::Ci::Runner]
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, authorization_scopes, authorized?, authorizes_object?, #current_user, #errors_on_object, #load_application_object, #read_only?, #ready?, #unauthorized_object
Methods included from Gitlab::Graphql::Authorize::AuthorizeResource
#authorize!, #authorized_find!, #authorized_resource?, #find_object, #raise_resource_not_available_error!
Instance Method Details
#resolve(**runner_attrs) ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 |
# File 'app/graphql/mutations/ci/runner/bulk_delete.rb', line 27 def resolve(**runner_attrs) if ids = runner_attrs[:ids] runner_ids = model_ids_of(ids) runners = find_all_runners_by_ids(runner_ids) result = ::Ci::Runners::BulkDeleteRunnersService.new(runners: runners, current_user: current_user).execute result.payload.slice(:deleted_count, :deleted_ids, :errors) else { errors: [] } end end |