NOTE: You are looking at documentation for an older release. For the latest information, see the current release documentation.
Ids Query Usage
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Ids 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
]
}
}