37 lines
1 KiB
Ruby
37 lines
1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Resolvers
|
||
|
module Crm
|
||
|
class ContactsResolver < BaseResolver
|
||
|
include Gitlab::Graphql::Authorize::AuthorizeResource
|
||
|
include ResolvesIds
|
||
|
|
||
|
authorize :read_crm_contact
|
||
|
|
||
|
type Types::CustomerRelations::ContactType, null: true
|
||
|
|
||
|
argument :search, GraphQL::Types::String,
|
||
|
required: false,
|
||
|
description: 'Search term to find contacts with.'
|
||
|
|
||
|
argument :state, Types::CustomerRelations::ContactStateEnum,
|
||
|
required: false,
|
||
|
description: 'State of the contacts to search for.'
|
||
|
|
||
|
argument :ids, [::Types::GlobalIDType[CustomerRelations::Contact]],
|
||
|
required: false,
|
||
|
description: 'Filter contacts by IDs.'
|
||
|
|
||
|
def resolve(**args)
|
||
|
args[:ids] = resolve_ids(args.delete(:ids))
|
||
|
|
||
|
::Crm::ContactsFinder.new(current_user, { group: group }.merge(args)).execute
|
||
|
end
|
||
|
|
||
|
def group
|
||
|
object.respond_to?(:sync) ? object.sync : object
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|