summaryrefslogtreecommitdiff
path: root/app/graphql/types/metrics/dashboard_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/metrics/dashboard_type.rb')
-rw-r--r--app/graphql/types/metrics/dashboard_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/metrics/dashboard_type.rb b/app/graphql/types/metrics/dashboard_type.rb
index 40d2c2f195c..04cac55894e 100644
--- a/app/graphql/types/metrics/dashboard_type.rb
+++ b/app/graphql/types/metrics/dashboard_type.rb
@@ -7,10 +7,10 @@ module Types
class DashboardType < ::Types::BaseObject
graphql_name 'MetricsDashboard'
- field :path, GraphQL::STRING_TYPE, null: true,
+ field :path, GraphQL::Types::String, null: true,
description: 'Path to a file with the dashboard definition.'
- field :schema_validation_warnings, [GraphQL::STRING_TYPE], null: true,
+ field :schema_validation_warnings, [GraphQL::Types::String], null: true,
description: 'Dashboard schema validation warnings.'
field :annotations, Types::Metrics::Dashboards::AnnotationType.connection_type, null: true,