summaryrefslogtreecommitdiff
path: root/app/graphql/types/diff_paths_input_type.rb
blob: e1d3d58411c013c4f1563cda5c128b739da22b4e (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Types
  class DiffPathsInputType < BaseInputObject
    argument :old_path, GraphQL::Types::String, required: false,
              description: 'The path of the file on the start sha.'
    argument :new_path, GraphQL::Types::String, required: false,
              description: 'The path of the file on the head sha.'
  end
end