summaryrefslogtreecommitdiff
path: root/app/graphql/types/release_asset_link_input_type.rb
blob: 17d05a7379781b5dfa319d083d2cc367cba96420 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Types
  class ReleaseAssetLinkInputType < BaseInputObject
    graphql_name 'ReleaseAssetLinkInput'
    description 'Fields that are available when modifying a release asset link'

    include Types::ReleaseAssetLinkSharedInputArguments
  end
end