Welcome to mirror list, hosted at ThFree Co, Russian Federation.

alert_status_counts_resolver.rb « alert_management « resolvers « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a45de21002f493a5b2f8b21bb2a50597cbe7ab38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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

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