2013-08-28 19:24:34 -04:00
|
|
|
[[query-dsl-span-first-query]]
|
2015-06-03 19:59:22 -04:00
|
|
|
=== Span First Query
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
Matches spans near the beginning of a field. The span first query maps
|
|
|
|
to Lucene `SpanFirstQuery`. Here is an example:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
GET /_search
|
2013-08-28 19:24:34 -04:00
|
|
|
{
|
2016-05-24 05:58:43 -04:00
|
|
|
"query": {
|
|
|
|
"span_first" : {
|
|
|
|
"match" : {
|
|
|
|
"span_term" : { "user" : "kimchy" }
|
|
|
|
},
|
|
|
|
"end" : 3
|
|
|
|
}
|
2013-08-28 19:24:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
The `match` clause can be any other span type query. The `end` controls
|
|
|
|
the maximum end position permitted in a match.
|