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

issue_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: f8825ff6c4616902a59bb862758a2eeef736ae91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Types
  class IssueSortEnum < IssuableSortEnum
    graphql_name 'IssueSort'
    description 'Values for sorting issues'

    value 'DUE_DATE_ASC', 'Due date by ascending order.', value: :due_date_asc
    value 'DUE_DATE_DESC', 'Due date by descending order.', value: :due_date_desc
    value 'RELATIVE_POSITION_ASC', 'Relative position by ascending order.', value: :relative_position_asc
    value 'SEVERITY_ASC', 'Severity from less critical to more critical.', value: :severity_asc
    value 'SEVERITY_DESC', 'Severity from more critical to less critical.', value: :severity_desc
    value 'TITLE_ASC', 'Title by ascending order.', value: :title_asc
    value 'TITLE_DESC', 'Title by descending order.', value: :title_desc
    value 'POPULARITY_ASC', 'Number of upvotes (awarded "thumbs up" emoji) by ascending order.', value: :popularity_asc
    value 'POPULARITY_DESC', 'Number of upvotes (awarded "thumbs up" emoji) by descending order.', value: :popularity_desc
  end
end

Types::IssueSortEnum.prepend_mod_with('Types::IssueSortEnum')