gitlab-org--gitlab-foss/app/graphql/types/diff_paths_input_type.rb

11 lines
424 B
Ruby

# frozen_string_literal: true
module Types
class DiffPathsInputType < BaseInputObject
argument :new_path, GraphQL::Types::String, required: false,
description: 'Path of the file on the HEAD SHA.'
argument :old_path, GraphQL::Types::String, required: false,
description: 'Path of the file on the start SHA.'
end
end