summaryrefslogtreecommitdiff
path: root/app/graphql/types/release_asset_link_input_type.rb
blob: 242d19b683f7e726b80f6b1e4880ef872f0cdaa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  class ReleaseAssetLinkInputType < BaseInputObject
    graphql_name 'ReleaseAssetLinkInput'
    description 'Fields that are available when modifying a release asset link'

    argument :name, GraphQL::STRING_TYPE,
             required: true,
             description: 'Name of the asset link.'

    argument :url, GraphQL::STRING_TYPE,
             required: true,
             description: 'URL of the asset link.'

    argument :direct_asset_path, GraphQL::STRING_TYPE,
             required: false, as: :filepath,
             description: 'Relative path for a direct asset link.'

    argument :link_type, Types::ReleaseAssetLinkTypeEnum,
             required: false, default_value: 'other',
             description: 'The type of the asset link.'
  end
end