summaryrefslogtreecommitdiff
path: root/app/graphql/types/diff_stats_type.rb
blob: 6c79a4c389d17f312dbf8b404a7b1d1cbcea80c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  # Types that use DiffStatsType should have their own authorization
  class DiffStatsType < BaseObject
    graphql_name 'DiffStats'

    description 'Changes to a single file'

    field :path, GraphQL::STRING_TYPE, null: false,
          description: 'File path, relative to repository root'
    field :additions, GraphQL::INT_TYPE, null: false,
          description: 'Number of lines added to this file'
    field :deletions, GraphQL::INT_TYPE, null: false,
          description: 'Number of lines deleted from this file'
  end
  # rubocop: enable Graphql/AuthorizeTypes
end