Class: Resolvers::WorkItems::TypesResolver

Inherits:
BaseResolver
  • Object
show all
Defined in:
app/graphql/resolvers/work_items/types_resolver.rb

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

#resolve(taskable: nil) ⇒ Object



13
14
15
16
17
18
19
20
# File 'app/graphql/resolvers/work_items/types_resolver.rb', line 13

def resolve(taskable: nil)
  # This will require a finder in the future when groups/projects get their work item types
  # All groups/projects use the default types for now
  base_scope = ::WorkItems::Type.default
  base_scope = base_scope.by_type(:task) if taskable

  base_scope.order_by_name_asc
end