Class: Resolvers::Ci::PipelineStagesResolver

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

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!, complexity, complexity_multiplier, #current_user, field_options, last, #object, #offset_pagination, 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!

Instance Method Details

#preloadsObject



17
18
19
20
21
# File 'app/graphql/resolvers/ci/pipeline_stages_resolver.rb', line 17

def preloads
  {
    jobs: { latest_statuses: [:needs] }
  }
end

#resolve_with_lookaheadObject



13
14
15
# File 'app/graphql/resolvers/ci/pipeline_stages_resolver.rb', line 13

def resolve_with_lookahead
  apply_lookahead(pipeline.stages)
end