WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Global Aggregation Usage
editGlobal Aggregation Usage
editFluent DSL example
edits => s .Aggregations(a => a .Global("all_projects", g => g .Aggregations(aa => aa .Terms("names", t => t .Field(p => p.Name) ) ) ) )
Object Initializer syntax example
editnew SearchRequest<Project> { Aggregations = new GlobalAggregation("all_projects") { Aggregations = new TermsAggregation("names") { Field = Field<Project>(p => p.Name) } } }
Example json output.
{ "aggs": { "all_projects": { "global": {}, "aggs": { "names": { "terms": { "field": "name" } } } } } }
Handling Responses
editresponse.ShouldBeValid(); var allProjects = response.Aggs.Global("all_projects"); allProjects.Should().NotBeNull(); var names = allProjects.Terms("names"); names.Should().NotBeNull();