[[full-text-queries]] == Full text queries The high-level full text queries are usually used for running full text queries on full text fields like the body of an email. They understand how the field being queried is <> and will apply each field's `analyzer` (or `search_analyzer`) to the query string before executing. The queries in this group are: <>:: The standard query for performing full text queries, including fuzzy matching and phrase or proximity queries. <>:: Like the `match` query but used for matching exact phrases or word proximity matches. <>:: The poor man's _search-as-you-type_. Like the `match_phrase` query, but does a wildcard search on the final word. <>:: The multi-field version of the `match` query. <>:: A more specialized query which gives more preference to uncommon words. <>:: Supports the compact Lucene <>, allowing you to specify AND|OR|NOT conditions and multi-field search within a single query string. For expert users only. <>:: A simpler, more robust version of the `query_string` syntax suitable for exposing directly to users. <>:: A full text query that allows fine-grained control of the ordering and proximity of matching terms include::match-query.asciidoc[] include::match-phrase-query.asciidoc[] include::match-phrase-prefix-query.asciidoc[] include::multi-match-query.asciidoc[] include::common-terms-query.asciidoc[] include::query-string-query.asciidoc[] include::simple-query-string-query.asciidoc[] include::intervals-query.asciidoc[]