Post Filter Usage

edit

Fluent DSL example

edit
s => s
.PostFilter(f => f.MatchAll())

Object Initializer syntax example

edit
new SearchRequest<Project>()
{
    PostFilter = new QueryContainer(new MatchAllQuery())
}

Example json output.

{
  "post_filter": {
    "match_all": {}
  }
}