summaryrefslogtreecommitdiff
path: root/app/graphql/types/diff_refs_type.rb
blob: 33a5780cd68380be4e0a581c8023008e7ac8b3b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

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

    field :head_sha, GraphQL::STRING_TYPE, null: false, description: 'The sha of the head at the time the comment was made'
    field :base_sha, GraphQL::STRING_TYPE, null: false, description: 'The merge base of the branch the comment was made on'
    field :start_sha, GraphQL::STRING_TYPE, null: false, description: 'The sha of the branch being compared against'
  end
  # rubocop: enable Graphql/AuthorizeTypes
end