Missing Aggregation Usageedit
Fluent DSL Exampleedit
s => s .Aggregations(a => a .Missing("projects_without_a_description", m => m .Field(p => p.Description.Suffix("keyword")) ) )
Object Initializer Syntax Exampleedit
new SearchRequest<Project> { Aggregations = new MissingAggregation("projects_without_a_description") { Field = Field<Project>(p => p.Description.Suffix("keyword")) } }
Example json output.
{ "aggs": { "projects_without_a_description": { "missing": { "field": "description.keyword" } } } }
Handling Responsesedit
response.ShouldBeValid(); var projectsWithoutDesc = response.Aggs.Missing("projects_without_a_description"); projectsWithoutDesc.Should().NotBeNull();