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

release_link_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 070f14a90dffe735b339684d12b49ecc041483e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Types
  class ReleaseLinkType < BaseObject
    graphql_name 'ReleaseLink'

    authorize :read_release

    field :id, GraphQL::ID_TYPE, null: false,
          description: 'ID of the link'
    field :name, GraphQL::STRING_TYPE, null: true,
          description: 'Name of the link'
    field :url, GraphQL::STRING_TYPE, null: true,
          description: 'URL of the link'
    field :link_type, Types::ReleaseLinkTypeEnum, null: true,
          description: 'Type of the link: `other`, `runbook`, `image`, `package`; defaults to `other`'
    field :external, GraphQL::BOOLEAN_TYPE, null: true, method: :external?,
          description: 'Indicates the link points to an external resource'
  end
end