Ids Query Usageedit
Fluent DSL Exampleedit
q
.Ids(c => c
.Name("named_query")
.Boost(1.1)
.Values(1, 2, 3, 4)
.Types(typeof(Project), typeof(Developer))
)Object Initializer Syntax Exampleedit
new 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
]
}
}