debian-mirror-gitlab/app/graphql/resolvers/crm/organizations_resolver.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# frozen_string_literal: true
module Resolvers
module Crm
class OrganizationsResolver < BaseResolver
include Gitlab::Graphql::Authorize::AuthorizeResource
include ResolvesIds
authorize :read_crm_organization
type Types::CustomerRelations::OrganizationType, null: true
argument :search, GraphQL::Types::String,
required: false,
description: 'Search term used to find organizations with.'
argument :state, Types::CustomerRelations::OrganizationStateEnum,
required: false,
description: 'State of the organization to search for.'
argument :ids, [Types::GlobalIDType[CustomerRelations::Organization]],
required: false,
description: 'Filter organizations by IDs.'
def resolve(**args)
args[:ids] = resolve_ids(args.delete(:ids))
::Crm::OrganizationsFinder.new(current_user, { group: group }.merge(args)).execute
end
def group
object.respond_to?(:sync) ? object.sync : object
end
end
end
end