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

13 lines
380 B
Ruby

# frozen_string_literal: true
module Types
class ReleaseAssetsInputType < BaseInputObject
graphql_name 'ReleaseAssetsInput'
description 'Fields that are available when modifying release assets'
argument :links, [Types::ReleaseAssetLinkInputType],
required: false,
description: 'List of asset links to associate to the release.'
end
end