summaryrefslogtreecommitdiff
path: root/app/graphql/resolvers/alert_management/alert_status_counts_resolver.rb
blob: 96ea4610affd3aa611825db781e383e8c6395554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Resolvers
  module AlertManagement
    class AlertStatusCountsResolver < BaseResolver
      type Types::AlertManagement::AlertStatusCountsType, null: true

      argument :search, GraphQL::STRING_TYPE,
                description: 'Search criteria for filtering alerts. This will search on title, description, service, monitoring_tool.',
                required: false

      argument :assignee_username, GraphQL::STRING_TYPE,
                required: false,
                description: 'Username of a user assigned to the issue'

      def resolve(**args)
        ::Gitlab::AlertManagement::AlertStatusCounts.new(context[:current_user], object, args)
      end
    end
  end
end