2021-12-11 22:18:48 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Resolvers
|
|
|
|
class TopicsResolver < BaseResolver
|
|
|
|
type Types::Projects::TopicType, null: true
|
|
|
|
|
|
|
|
argument :search, GraphQL::Types::String,
|
|
|
|
required: false,
|
|
|
|
description: 'Search query for topic name.'
|
|
|
|
|
|
|
|
def resolve(**args)
|
|
|
|
if args[:search].present?
|
2022-05-07 20:08:51 +05:30
|
|
|
::Projects::Topic.search(args[:search]).order_by_non_private_projects_count
|
2021-12-11 22:18:48 +05:30
|
|
|
else
|
2022-05-07 20:08:51 +05:30
|
|
|
::Projects::Topic.order_by_non_private_projects_count
|
2021-12-11 22:18:48 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|