summaryrefslogtreecommitdiff
path: root/app/graphql/types/projects/namespace_project_sort_enum.rb
blob: 1e13deb6508d95a3b46e06a12b558920e8bfbf9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Types
  module Projects
    class NamespaceProjectSortEnum < BaseEnum
      graphql_name 'NamespaceProjectSort'
      description 'Values for sorting projects'

      value 'SIMILARITY', 'Most similar to the search query', value: :similarity
    end
  end
end