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

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

26 lines
737 B
Ruby
Raw Normal View History

2022-08-27 11:52:29 +05:30
# frozen_string_literal: true
module Resolvers
module Crm
class ContactStateCountsResolver < BaseResolver
include Gitlab::Graphql::Authorize::AuthorizeResource
authorize :read_crm_contact
type Types::CustomerRelations::ContactStateCountsType, 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.'
def resolve(**args)
CustomerRelations::ContactStateCounts.new(context[:current_user], object, args)
end
end
end
end