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

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: 3245cb33e0d9478708d1aad053955176a5495fc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  class SortEnum < BaseEnum
    graphql_name 'Sort'
    description 'Common sort values'

    value 'updated_desc', 'Updated at descending order'
    value 'updated_asc', 'Updated at ascending order'
    value 'created_desc', 'Created at descending order'
    value 'created_asc', 'Created at ascending order'
  end
end