summaryrefslogtreecommitdiff
path: root/app/graphql/types/metrics/dashboard_type.rb
blob: 11e834013ca0e0235ed0361af91f4dbcbc0a4137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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'
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end