summaryrefslogtreecommitdiff
path: root/app/graphql/types/release_assets_input_type.rb
blob: f50be89d43f6bce526580e4ef069013811b6529d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  class ReleaseAssetsInputType < BaseInputObject
    graphql_name 'ReleaseAssetsInput'
    description 'Fields that are available when modifying release assets'

    argument :links, [Types::ReleaseAssetLinkInputType],
             required: false,
             description: 'A list of asset links to associate to the release.'
  end
end