You are looking at documentation for an older release.
Not what you want? See the
current release documentation.
Min aggregationedit
Returns the minimum value among numeric values extracted from the aggregated documents.
Fluent DSLedit
var result = client.Search<ElasticsearchProject>(s => s .Aggregations(a => a .Min("my_min_agg", m => m .Field(p => p.IntValues) ) ) ) var agg = result.Aggs.Min("min_aggregation");
Object Initializer Syntaxedit
var request = new SearchRequest { Aggregations = new Dictionary<string, IAggregationContainer> { { "my_min_agg", new AggregationContainer { Min = new MinAggregator { Field = "intValues" } } } } }; var result = client.Search<ElasticsearchProject>(request); var agg = result.Aggs.Min("my_min_agg");
Refer to the original docs for more information.