From 97de0f13d4c01b8e70da7814ff09577b81b0795d Mon Sep 17 00:00:00 2001 From: Rob Siebens Date: Mon, 15 Apr 2024 08:17:48 -0700 Subject: [PATCH] fix(data-apis): Clarify shorthand option --- .../understand-data/metric-data/query-metric-data-type.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/data-apis/understand-data/metric-data/query-metric-data-type.mdx b/src/content/docs/data-apis/understand-data/metric-data/query-metric-data-type.mdx index 2002396c0e5..b978f3dd9fc 100644 --- a/src/content/docs/data-apis/understand-data/metric-data/query-metric-data-type.mdx +++ b/src/content/docs/data-apis/understand-data/metric-data/query-metric-data-type.mdx @@ -201,7 +201,7 @@ If used in a query, `myNeatProcess.%.duration` will return results for all three There are [multiple types of `Metric` data](/docs/data-apis/understand-data/metric-data/metric-data-type/#metric-types) (for example, `gauge` and `count`) and each type has several associated **fields**. For details on the types of fields available, see [`getField()`](/docs/query-your-data/nrql-new-relic-query-language/get-started/nrql-syntax-clauses-functions/#func-getfield). -You can use `getField()` to extract those fields. For example, if you want to use a single value within a metric to do a comparison in a `WHERE` clause, you can use `getField(metricName, field)` or `metricName[field]`. +You can use `getField()` to extract those fields. For example, if you want to use a single value within a metric to do a comparison in a `WHERE` clause, you can use `getField(metricName, field)` or the shorthand syntax `metricName[field]`.