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.
Span Within Query Usage
editSpan Within Query Usage
editFluent DSL example
editq .SpanWithin(sn => sn .Name("named_query") .Boost(1.1) .Little(i=>i .SpanTerm(st=>st.Field("field1").Value("hoya")) ) .Big(e=>e .SpanTerm(st=>st.Field("field1").Value("hoya2")) ) )
Object Initializer syntax example
editnew SpanWithinQuery { Name = "named_query", Boost = 1.1, Little = new SpanQuery { SpanTerm = new SpanTermQuery { Field = "field1", Value = "hoya"} }, Big = new SpanQuery { SpanTerm = new SpanTermQuery { Field = "field1", Value = "hoya2"} }, }
Example json output.
{ "span_within": { "_name": "named_query", "boost": 1.1, "little": { "span_term": { "field1": { "value": "hoya" } } }, "big": { "span_term": { "field1": { "value": "hoya2" } } } } }