WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. 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, "types": [ "project", "developer" ], "values": [ 1, 2, 3, 4 ] } }