summaryrefslogtreecommitdiff
path: root/app/graphql/types/release_asset_link_shared_input_arguments.rb
blob: 37a6cdd55c987870a34a2eeefe72e20b83b7f71b (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
  module ReleaseAssetLinkSharedInputArguments
    extend ActiveSupport::Concern

    included do
      argument :name, GraphQL::Types::String,
             required: true,
             description: 'Name of the asset link.'

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

      argument :direct_asset_path, GraphQL::Types::String,
             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
end