summaryrefslogtreecommitdiff
path: root/app/graphql/types/release_asset_link_type.rb
blob: 21f1bd50cff9f2f013c73d5f6fac4c82a4107a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Types
  class ReleaseAssetLinkType < BaseObject
    graphql_name 'ReleaseAssetLink'
    description 'Represents an asset link associated with a release'

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