I have several questions about Azure search facet feature.
Does Azure search support metrics facet, just like the metric aggregation in Elasticsearch? For example, I have a Price field, and I want to aggreage the price for average price of all products.
How to implement the sub facet, that is, the facet on other facets. For example, we have two facet fields, ProductType and Price, instead of aggregate price range on whole documents, we want aggregate price range on each ProductType.
Is top hits facet supported? Just like Elasticsearch top_hit aggregation, we want get top hits documents for each faceted buckets.