Class: Resolvers::Analytics::CycleAnalytics::DeploymentCountResolver

Inherits:
BaseCountResolver show all
Defined in:
app/graphql/resolvers/analytics/cycle_analytics/deployment_count_resolver.rb

Instance Method Summary collapse

Methods inherited from BaseCountResolver

#ready?

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(**args) ⇒ Object



8
9
10
11
12
13
14
15
16
# File 'app/graphql/resolvers/analytics/cycle_analytics/deployment_count_resolver.rb', line 8

def resolve(**args)
  value = count(args)
  {
    value: value,
    title: n_('Deploy', 'Deploys', value.to_i),
    identifier: 'deploys',
    links: []
  }
end