Indices No Match Query Usageedit

Fluent DSL exampleedit

q
.Indices(c => c
    .Name("named_query")
    .Boost(1.1)
    .Indices(Nest.Indices.All)
    .Query(qq => qq.MatchAll())
    .NoMatchQuery(NoMatchShortcut.All)
)

Object Initializer syntax exampleedit

new IndicesQuery()
{
    Name = "named_query",
    Boost = 1.1,
    Indices = Nest.Indices.All,
    Query = new MatchAllQuery(),
    NoMatchQuery = new NoMatchQueryContainer { Shortcut = NoMatchShortcut.All }
}

Example json output.

{
  "indices": {
    "_name": "named_query",
    "boost": 1.1,
    "indices": [
      "_all"
    ],
    "no_match_query": "all",
    "query": {
      "match_all": {}
    }
  }
}