| 1234567891011121314151617181920212223242526272829303132333435363738 | [[query-dsl-span-multi-term-query]]=== Span Multi Term QueryThe `span_multi` query allows you to wrap a `multi term query` (one of wildcard,fuzzy, prefix, range or regexp query) as a `span query`, soit can be nested. Example:[source,js]--------------------------------------------------GET /_search{    "query": {        "span_multi":{            "match":{                "prefix" : { "user" :  { "value" : "ki" } }            }        }    }}--------------------------------------------------// CONSOLEA boost can also be associated with the query:[source,js]--------------------------------------------------GET /_search{    "query": {        "span_multi":{            "match":{                "prefix" : { "user" :  { "value" : "ki", "boost" : 1.08 } }            }        }    }}--------------------------------------------------// CONSOLE
 |