debian-mirror-gitlab/app/graphql/types/diff_paths_input_type.rb
2021-04-17 20:07:23 +05:30

11 lines
360 B
Ruby

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