Welcome to mirror list, hosted at ThFree Co, Russian Federation.

release_assets_input_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e591dd3742abd9683f65c746944660d937bc13d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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