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.
Template Query Usage
editTemplate Query Usage
editFluent DSL example
editq .Template(sn => sn .Name("named_query") .Boost(1.1) .Inline(_templateString) .Params(p=>p.Add("query_string", "all about search")) )
Object Initializer syntax example
editnew TemplateQuery { Name = "named_query", Boost = 1.1, Inline = _templateString, Params = new Dictionary<string, object> { { "query_string", "all about search" } } }
Example json output.
{ "template": { "_name": "named_query", "boost": 1.1, "inline": "{ \"match\": { \"text\": \"{{query_string}}\" } }", "params": { "query_string": "all about search" } } }