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

module Types
  module Notes
    # rubocop: disable Graphql/AuthorizeTypes
    class DiffPositionBaseInputType < BaseInputObject
      argument :head_sha, GraphQL::STRING_TYPE, required: true,
               description: copy_field_description(Types::DiffRefsType, :head_sha)
      argument :base_sha,  GraphQL::STRING_TYPE, required: false,
               description: copy_field_description(Types::DiffRefsType, :base_sha)
      argument :start_sha, GraphQL::STRING_TYPE, required: true,
               description: copy_field_description(Types::DiffRefsType, :start_sha)

      argument :paths,
               Types::DiffPathsInputType,
               required: true,
               description: 'The paths of the file that was changed. ' \
                            'Both of the properties of this input are optional, but at least one of them is required'
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end