From 02cf429e539687256ce90a7f33f66b45d536b0ac Mon Sep 17 00:00:00 2001 From: Clinton Gormley Date: Tue, 10 May 2016 12:18:21 +0200 Subject: [PATCH] Update full-text-queries.asciidoc Updated the full text query intro to add `match_phrase` and `match_phrase_prefix` --- docs/reference/query-dsl/full-text-queries.asciidoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/reference/query-dsl/full-text-queries.asciidoc b/docs/reference/query-dsl/full-text-queries.asciidoc index 987e8785096..ba3924669d8 100644 --- a/docs/reference/query-dsl/full-text-queries.asciidoc +++ b/docs/reference/query-dsl/full-text-queries.asciidoc @@ -13,6 +13,14 @@ 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.