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

release_asset_link_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: d13861fad8f71dcdfad3cec355b8cd9b06d9dce2 (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