From 0c2ddc446d7ac73f4a24b8bc9d9b40bcb2638596 Mon Sep 17 00:00:00 2001 From: Aivaras Gotovskis <aivaras.gotovskis@ongr.io> Date: Thu, 2 Jul 2015 11:35:17 +0300 Subject: [PATCH] Add fuzzy like this query doc. --- docs/Query/FuzzyLikeThisQuery.md | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 docs/Query/FuzzyLikeThisQuery.md diff --git a/docs/Query/FuzzyLikeThisQuery.md b/docs/Query/FuzzyLikeThisQuery.md new file mode 100644 index 0000000..de05d40 --- /dev/null +++ b/docs/Query/FuzzyLikeThisQuery.md @@ -0,0 +1,34 @@ +# Fuzzy Like This Query + +> More info about fuzzy like this field query is in the [official elasticsearch docs][1] + +Fuzzy like this query find documents that are "like" provided text by running it against one or more fields. + +## Simple example + +```JSON +{ + "fuzzy_like_this" : { + "fields" : ["name.first", "name.last"], + "like_text" : "text like this one", + "max_query_terms" : 12 + } +} +``` + +In DSL: + +```php +$fuzzyLikeThisQuery = new FuzzyLikeThisQuery( + ['name.first', 'name.last'], + 'text like this one', + [ 'max_query_terms' => 12 ] +); + +$search = new Search(); +$search->addQuery($fuzzyLikeThisQuery); + +$queryArray = $search->toArray(); +``` + +[1]: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-flt-query.html -- GitLab