Class: Mutations::WorkItems::LinkedItems::Base

Inherits:
BaseMutation
  • Object
show all
Defined in:
app/graphql/mutations/work_items/linked_items/base.rb

Direct Known Subclasses

Add, Remove

Constant Summary collapse

MAX_WORK_ITEMS =

Limit maximum number of items that can be linked at a time to avoid overloading the DB See gitlab.com/gitlab-org/gitlab/-/issues/419555

3

Constants inherited from BaseMutation

BaseMutation::ERROR_MESSAGE

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, #read_only?, #unauthorized_object

Methods included from Gitlab::Graphql::Authorize::AuthorizeResource

#authorize!, #authorized_find!, #authorized_resource?, #find_object, #raise_resource_not_available_error!

Instance Method Details

#ready?(**args) ⇒ Boolean

Returns:

  • (Boolean)


22
23
24
25
26
27
28
29
30
31
32
# File 'app/graphql/mutations/work_items/linked_items/base.rb', line 22

def ready?(**args)
  if args[:work_items_ids].size > MAX_WORK_ITEMS
    raise Gitlab::Graphql::Errors::ArgumentError,
      format(
        _('No more than %{max_work_items} work items can be modified at the same time.'),
        max_work_items: MAX_WORK_ITEMS
      )
  end

  super
end

#resolve(**args) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
# File 'app/graphql/mutations/work_items/linked_items/base.rb', line 34

def resolve(**args)
  work_item = authorized_find!(id: args.delete(:id))
  raise_resource_not_available_error! unless work_item.project.linked_work_items_feature_flag_enabled?

  service_response = update_links(work_item, args)

  {
    work_item: work_item,
    errors: service_response[:status] == :error ? Array.wrap(service_response[:message]) : [],
    message: service_response[:status] == :success ? service_response[:message] : ''
  }
end