Class: Resolvers::WorkItems::AncestorsResolver

Inherits:
HierarchyResolver show all
Includes:
WorkItems::LookAheadPreloads
Defined in:
app/graphql/resolvers/work_items/ancestors_resolver.rb

Overview

rubocop:disable Graphql/ResolverType – the type is inherited from the parent class

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 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

#resolve_with_lookaheadObject



9
10
11
12
13
14
# File 'app/graphql/resolvers/work_items/ancestors_resolver.rb', line 9

def resolve_with_lookahead
  ancestors = object.ancestors
  return WorkItem.none unless ancestors

  truncate_ancestors(apply_lookahead(ancestors)).reverse!
end