Class: Resolvers::AlertManagement::AlertResolver

Inherits:
BaseResolver
  • Object
show all
Includes:
LooksAhead
Defined in:
app/graphql/resolvers/alert_management/alert_resolver.rb

Constant Summary

Constants included from Gitlab::Graphql::Authorize::AuthorizeResource

Gitlab::Graphql::Authorize::AuthorizeResource::ConfigurationError, Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR

Instance Method Summary collapse

Methods included from LooksAhead

#apply_lookahead, #resolve

Methods inherited from BaseResolver

as_single, authorization, authorized?, before_connection_authorization, before_connection_authorization_block, calculate_ext_conn_complexity, calls_gitaly!, calls_gitaly?, complexity, complexity_multiplier, #current_user, last, #object, #offset_pagination, requires_argument!, requires_argument?, resolver_complexity, #select_result, single, #single?, single_definition_blocks, singular_type, when_single

Methods included from Gitlab::Utils::Override

#extended, extensions, #included, #method_added, #override, #prepended, #queue_verification, verify!

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

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

Instance Method Details

#preloadsObject



45
46
47
48
49
50
51
# File 'app/graphql/resolvers/alert_management/alert_resolver.rb', line 45

def preloads
  {
    assignees: [:assignees],
    notes: [:ordered_notes, { ordered_notes: [:system_note_metadata, :project, :noteable] }],
    issue: [:issue]
  }
end

#resolve_with_lookahead(**args) ⇒ Object

Raises:

  • (GraphQL::ExecutionError)


36
37
38
39
40
41
42
43
# File 'app/graphql/resolvers/alert_management/alert_resolver.rb', line 36

def resolve_with_lookahead(**args)
  parent = object.respond_to?(:sync) ? object.sync : object
  return ::AlertManagement::Alert.none if parent.nil?

  raise GraphQL::ExecutionError, error_message if alert_is_disabled?

  apply_lookahead(::AlertManagement::AlertsFinder.new(context[:current_user], parent, args).execute)
end