40 lines
1 KiB
Ruby
40 lines
1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Resolvers
|
||
|
class GroupsResolver < BaseResolver
|
||
|
type Types::GroupType, null: true
|
||
|
|
||
|
argument :include_parent_descendants, GraphQL::Types::Boolean,
|
||
|
required: false,
|
||
|
description: 'List of descendant groups of the parent group.',
|
||
|
default_value: true
|
||
|
|
||
|
argument :owned, GraphQL::Types::Boolean,
|
||
|
required: false,
|
||
|
description: 'Limit result to groups owned by authenticated user.'
|
||
|
|
||
|
argument :search, GraphQL::Types::String,
|
||
|
required: false,
|
||
|
description: 'Search query for group name or group full path.'
|
||
|
|
||
|
alias_method :parent, :object
|
||
|
|
||
|
def resolve(**args)
|
||
|
return [] unless parent.present?
|
||
|
|
||
|
find_groups(args)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
# rubocop: disable CodeReuse/ActiveRecord
|
||
|
def find_groups(args)
|
||
|
GroupsFinder
|
||
|
.new(context[:current_user], args.merge(parent: parent))
|
||
|
.execute
|
||
|
.reorder('name ASC')
|
||
|
end
|
||
|
# rubocop: enable CodeReuse/ActiveRecord
|
||
|
end
|
||
|
end
|