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

package_details_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: 5ac80860fe2b4321f25b6855689b43f47511f18f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

module Types
  module Packages
    class PackageDetailsType < PackageType
      graphql_name 'PackageDetailsType'
      description 'Represents a package details in the Package Registry. Note that this type is in beta and susceptible to changes'
      authorize :read_package

      field :versions, ::Types::Packages::PackageType.connection_type, null: true,
        description: 'Other versions of the package.'

      field :package_files, Types::Packages::PackageFileType.connection_type, null: true, description: 'Package files.'

      field :dependency_links, Types::Packages::PackageDependencyLinkType.connection_type, null: true, description: 'Dependency link.'

      # this is an override of Types::Packages::PackageType.pipelines
      # in order to use a custom resolver: Resolvers::PackagePipelinesResolver
      field :pipelines,
            resolver: Resolvers::PackagePipelinesResolver,
            description: 'Pipelines that built the package.',
            deprecated: { reason: 'Due to scalability concerns, this field is going to be removed', milestone: '14.6' }

      def versions
        object.versions
      end
    end
  end
end