debian-mirror-gitlab/app/graphql/types/ci/analytics_type.rb

34 lines
1.6 KiB
Ruby
Raw Normal View History

2021-02-22 17:27:13 +05:30
# frozen_string_literal: true
module Types
module Ci
# rubocop: disable Graphql/AuthorizeTypes
class AnalyticsType < BaseObject
graphql_name 'PipelineAnalytics'
2021-10-27 15:23:28 +05:30
field :week_pipelines_totals, [GraphQL::Types::Int], null: true,
2021-03-11 19:13:27 +05:30
description: 'Total weekly pipeline count.'
2021-10-27 15:23:28 +05:30
field :week_pipelines_successful, [GraphQL::Types::Int], null: true,
2021-03-11 19:13:27 +05:30
description: 'Total weekly successful pipeline count.'
2021-10-27 15:23:28 +05:30
field :week_pipelines_labels, [GraphQL::Types::String], null: true,
2021-03-11 19:13:27 +05:30
description: 'Labels for the weekly pipeline count.'
2021-10-27 15:23:28 +05:30
field :month_pipelines_totals, [GraphQL::Types::Int], null: true,
2021-03-11 19:13:27 +05:30
description: 'Total monthly pipeline count.'
2021-10-27 15:23:28 +05:30
field :month_pipelines_successful, [GraphQL::Types::Int], null: true,
2021-03-11 19:13:27 +05:30
description: 'Total monthly successful pipeline count.'
2021-10-27 15:23:28 +05:30
field :month_pipelines_labels, [GraphQL::Types::String], null: true,
2021-03-11 19:13:27 +05:30
description: 'Labels for the monthly pipeline count.'
2021-10-27 15:23:28 +05:30
field :year_pipelines_totals, [GraphQL::Types::Int], null: true,
2021-03-11 19:13:27 +05:30
description: 'Total yearly pipeline count.'
2021-10-27 15:23:28 +05:30
field :year_pipelines_successful, [GraphQL::Types::Int], null: true,
2021-03-11 19:13:27 +05:30
description: 'Total yearly successful pipeline count.'
2021-10-27 15:23:28 +05:30
field :year_pipelines_labels, [GraphQL::Types::String], null: true,
2021-03-11 19:13:27 +05:30
description: 'Labels for the yearly pipeline count.'
2021-10-27 15:23:28 +05:30
field :pipeline_times_values, [GraphQL::Types::Int], null: true,
2021-03-11 19:13:27 +05:30
description: 'Pipeline times.'
2021-10-27 15:23:28 +05:30
field :pipeline_times_labels, [GraphQL::Types::String], null: true,
2021-03-11 19:13:27 +05:30
description: 'Pipeline times labels.'
2021-02-22 17:27:13 +05:30
end
end
end