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

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

module Types
  class ContainerRepositoryTagsSortEnum < BaseEnum
    graphql_name 'ContainerRepositoryTagSort'
    description 'Values for sorting tags'

    value 'NAME_ASC', 'Ordered by name in ascending order.', value: :name_asc
    value 'NAME_DESC', 'Ordered by name in descending order.', value: :name_desc
  end
end