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: 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