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

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

module Types
  module Packages
    class PackageTagType < BaseObject
      graphql_name 'PackageTag'
      description 'Represents a package tag'
      authorize :read_package

      field :id, GraphQL::ID_TYPE, null: false, description: 'The ID of the tag.'
      field :name, GraphQL::STRING_TYPE, null: false, description: 'The name of the tag.'
      field :created_at, Types::TimeType, null: false, description: 'The created date.'
      field :updated_at, Types::TimeType, null: false, description: 'The updated date.'
    end
  end
end