Class: Resolvers::IncidentManagement::TimelineEventsResolver
- Inherits:
-
BaseResolver
- Object
- GraphQL::Schema::Resolver
- BaseResolver
- Resolvers::IncidentManagement::TimelineEventsResolver
- Includes:
- LooksAhead
- Defined in:
- app/graphql/resolvers/incident_management/timeline_events_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
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
#preloads ⇒ Object
32 33 34 35 36 |
# File 'app/graphql/resolvers/incident_management/timeline_events_resolver.rb', line 32 def preloads { timeline_event_tags: [:timeline_event_tags] } end |
#resolve_with_lookahead(**args) ⇒ Object
25 26 27 28 29 30 |
# File 'app/graphql/resolvers/incident_management/timeline_events_resolver.rb', line 25 def resolve_with_lookahead(**args) incident = args[:incident_id].find raise GraphQL::ExecutionError, if alert_is_disabled?(incident&.project) apply_lookahead(::IncidentManagement::TimelineEventsFinder.new(current_user, incident, args).execute) end |