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

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

module Types
  module Packages
    class PackageGroupSortEnum < PackageSortEnum
      graphql_name 'PackageGroupSort'
      description 'Values for sorting group packages'

      # The following enums are not available till we enable the new Arel node:
      # See https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58657#note_552632305
      # value 'PROJECT_PATH_DESC', 'Project by descending order.', value: :project_path_desc
      # value 'PROJECT_PATH_ASC', 'Project by ascending order.', value: :project_path_asc
    end
  end
end