| 1234567891011121314151617181920 | [[query-dsl-span-first-query]]=== Span First QueryMatches spans near the beginning of a field. The span first query mapsto Lucene `SpanFirstQuery`. Here is an example:[source,js]--------------------------------------------------{    "span_first" : {        "match" : {            "span_term" : { "user" : "kimchy" }        },        "end" : 3    }}    --------------------------------------------------The `match` clause can be any other span type query. The `end` controlsthe maximum end position permitted in a match.
 |