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

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

module Types
  class SortDirectionEnum < BaseEnum
    graphql_name 'SortDirectionEnum'
    description 'Values for sort direction'

    value 'ASC', 'Ascending order.', value: 'asc'
    value 'DESC', 'Descending order.', value: 'desc'
  end
end