gitlab-org--gitlab-foss/app/graphql/types/projects/namespace_project_sort_enum.rb

14 lines
361 B
Ruby

# 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
value 'STORAGE', 'Sort by storage size', value: :storage
end
end
end