In an object query, the metric parameter returns one or more metric computations for each selected object. These computed values are in addition to the field values specified by the fields parameter. The syntax for the metric parameter is the same as in aggregate queries: it is a comma-separated list of metric expressions. Each metric expression is an algebraic expression using metric functions, arithmetic operators, and parentheses. See the section Metric Parameter for aggregate queries for full details. Below is an example object query with a single metric function:This query selects all Person objects and returns their FirstName and LastName fields. Additionally, the metric parameter returns the COUNT of all Messages.MessageAsSender values for each object. The metric expression result is returned as an additional field element whose name equals the metric expression text. Example:The field name used for the metric function can be customized for easier recognition using the AS syntax. Example:The name following AS can be a simple term or a quoted string.In addition to FirstName and LastName, this query returns for each person the sum of (1) the count of all DirectReports transitively (“down” the org chart) whose LastName contains the term “smith”, and (2) the count of all Managers transitively (“up” the org chart) whose Department contains the term “support”.