IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Fuzzy Like This (Field) Query (flt and flt_field)
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Fuzzy Like This (Field) Query (flt and flt_field)
editSee: * Fuzzy Like This Query * Fuzzy Like This Field Query
// flt Query
QueryBuilders.fuzzyLikeThisQuery("name.first", "name.last") // Fields
.likeText("text like this one") // Text
.maxQueryTerms(12); // Max num of Terms
// in generated queries
// flt_field Query
QueryBuilders.fuzzyLikeThisFieldQuery("name.first") // Only on single field
.likeText("text like this one")
.maxQueryTerms(12);