NOTE: You are looking at documentation for an older release. For the latest information, see the current release documentation.
Ids Query Usage
editIds Query Usage
editFluent DSL example
editq .Ids(c => c .Name("named_query") .Boost(1.1) .Values(1, 2, 3, 4) .Types(typeof(Project), typeof(Developer)) )
Object Initializer syntax example
editnew IdsQuery { Name = "named_query", Boost = 1.1, Values = new List<Id> { 1, 2, 3, 4 }, Types = Type<Project>().And<Developer>() }
Example json output.
{ "ids": { "_name": "named_query", "boost": 1.1, "type": [ "doc", "developer" ], "values": [ 1, 2, 3, 4 ] } }