summaryrefslogtreecommitdiff
path: root/app/graphql/types/metrics/dashboard_type.rb
blob: bbcce2d9596db3904089443467be6d758b9ca667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Types
  module Metrics
    # rubocop: disable Graphql/AuthorizeTypes
    # Authorization is performed at environment level
    class DashboardType < ::Types::BaseObject
      graphql_name 'MetricsDashboard'

      field :path, GraphQL::STRING_TYPE, null: true,
            description: 'Path to a file with the dashboard definition'

      field :schema_validation_warnings, [GraphQL::STRING_TYPE], null: true,
            description: 'Dashboard schema validation warnings'

      field :annotations, Types::Metrics::Dashboards::AnnotationType.connection_type, null: true,
            description: 'Annotations added to the dashboard',
            resolver: Resolvers::Metrics::Dashboards::AnnotationResolver
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end