Commit 0f58dab1 authored by Nathan Friend's avatar Nathan Friend

Technical writer feedback

parent ef0cffc8
...@@ -8565,7 +8565,7 @@ Aggregated summary of changes. ...@@ -8565,7 +8565,7 @@ Aggregated summary of changes.
### `Dora` ### `Dora`
A container for all information related to DORA metrics. All information related to DORA metrics.
#### Fields with arguments #### Fields with arguments
...@@ -8581,7 +8581,7 @@ Returns [`[DoraMetric!]`](#dorametric). ...@@ -8581,7 +8581,7 @@ Returns [`[DoraMetric!]`](#dorametric).
| ---- | ---- | ----------- | | ---- | ---- | ----------- |
| <a id="dorametricsenddate"></a>`endDate` | [`Date`](#date) | Date range to end at. Default is the current date. | | <a id="dorametricsenddate"></a>`endDate` | [`Date`](#date) | Date range to end at. Default is the current date. |
| <a id="dorametricsenvironmenttier"></a>`environmentTier` | [`DeploymentTier`](#deploymenttier) | The deployment tier of the environments to return. Defaults to `PRODUCTION`. | | <a id="dorametricsenvironmenttier"></a>`environmentTier` | [`DeploymentTier`](#deploymenttier) | The deployment tier of the environments to return. Defaults to `PRODUCTION`. |
| <a id="dorametricsinterval"></a>`interval` | [`DoraMetricBucketingInterval`](#dorametricbucketinginterval) | How the metric should be aggregrated. Defaults to `DAILY`. In the case of ALL, the `date` field in the response will be `null`. | | <a id="dorametricsinterval"></a>`interval` | [`DoraMetricBucketingInterval`](#dorametricbucketinginterval) | How the metric should be aggregrated. Defaults to `DAILY`. In the case of `ALL`, the `date` field in the response will be `null`. |
| <a id="dorametricsmetric"></a>`metric` | [`DoraMetricType!`](#dorametrictype) | The type of metric to return. | | <a id="dorametricsmetric"></a>`metric` | [`DoraMetricType!`](#dorametrictype) | The type of metric to return. |
| <a id="dorametricsstartdate"></a>`startDate` | [`Date`](#date) | Date range to start from. Default is 3 months ago. | | <a id="dorametricsstartdate"></a>`startDate` | [`Date`](#date) | Date range to start from. Default is 3 months ago. |
......
...@@ -23,7 +23,7 @@ module Resolvers ...@@ -23,7 +23,7 @@ module Resolvers
argument :interval, Types::DoraMetricBucketingIntervalEnum, argument :interval, Types::DoraMetricBucketingIntervalEnum,
required: false, required: false,
description: 'How the metric should be aggregrated. Defaults to `DAILY`. In the case of ALL, the `date` field in the response will be `null`.' description: 'How the metric should be aggregrated. Defaults to `DAILY`. In the case of `ALL`, the `date` field in the response will be `null`.'
argument :environment_tier, Types::DeploymentTierEnum, argument :environment_tier, Types::DeploymentTierEnum,
required: false, required: false,
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
# rubocop: disable Graphql/AuthorizeTypes # rubocop: disable Graphql/AuthorizeTypes
class DoraType < BaseObject class DoraType < BaseObject
graphql_name 'Dora' graphql_name 'Dora'
description 'A container for all information related to DORA metrics.' description 'All information related to DORA metrics.'
field :metrics, [::Types::DoraMetricType], null: true, field :metrics, [::Types::DoraMetricType], null: true,
resolver: ::Resolvers::DoraMetricsResolver, resolver: ::Resolvers::DoraMetricsResolver,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment