A newer version is available. For the latest information, see the
current release documentation.
Script Query Usage
editScript Query Usage
editA query allowing to define scripts as queries.
See the Elasticsearch documentation on script query for more details.
Fluent DSL example
editq .Script(sn => sn .Name("named_query") .Boost(1.1) .Script(s => s .Source(_templateString) .Params(p => p.Add("param1", 50)) ) )
Object Initializer syntax example
editnew ScriptQuery { Name = "named_query", Boost = 1.1, Script = new InlineScript(_templateString) { Params = new Dictionary<string, object> { { "param1", 50 } } }, }
Example json output.
{ "script": { "_name": "named_query", "boost": 1.1, "script": { "source": "doc['numberOfCommits'].value > params.param1", "params": { "param1": 50 } } } }