FacetResult interface

A single bucket of a facet query result. Reports the number of documents with a field value falling within a particular range or having a particular value or interval.

Properties

additionalProperties

Additional properties

avg

The resulting total avg for the facet when a avg metric is requested.

cardinality

The resulting total cardinality for the facet when a cardinality metric is requested.

count

The approximate count of documents falling within the bucket described by this facet.

facets

The nested facet query results for the search operation, organized as a collection of buckets for each faceted field; null if the query did not contain any nested facets.

max

The resulting total max for the facet when a max metric is requested.

min

The resulting total min for the facet when a min metric is requested.

sum

The resulting total sum for the facet when a sum metric is requested.

Property Details

additionalProperties

Additional properties

additionalProperties?: Record<string, any>

Property Value

Record<string, any>

avg

The resulting total avg for the facet when a avg metric is requested.

avg?: number

Property Value

number

cardinality

The resulting total cardinality for the facet when a cardinality metric is requested.

cardinality?: number

Property Value

number

count

The approximate count of documents falling within the bucket described by this facet.

count?: number

Property Value

number

facets

The nested facet query results for the search operation, organized as a collection of buckets for each faceted field; null if the query did not contain any nested facets.

facets?: Record<string, FacetResult[]>

Property Value

Record<string, FacetResult[]>

max

The resulting total max for the facet when a max metric is requested.

max?: number

Property Value

number

min

The resulting total min for the facet when a min metric is requested.

min?: number

Property Value

number

sum

The resulting total sum for the facet when a sum metric is requested.

sum?: number

Property Value

number