Missing Aggregation Usage

edit

Fluent DSL example

edit
s => s
.Aggregations(a => a
    .Missing("projects_without_a_description", m => m
        .Field(p => p.Description)
    )
)

Object Initializer syntax example

edit
new SearchRequest<Project>
{
    Aggregations = new MissingAggregation("projects_without_a_description")
    {
        Field = Field<Project>(p => p.Description)
    }
}

Example json output.

{
  "aggs": {
    "projects_without_a_description": {
      "missing": {
        "field": "description"
      }
    }
  }
}

Handling Responses

edit
response.ShouldBeValid();
var projectsWithoutDesc = response.Aggs.Missing("projects_without_a_description");
projectsWithoutDesc.Should().NotBeNull();