class Elasticsearch::DSL::Search::Queries::MatchPhrase

A query that analyzes the text and creates a phrase query out of the analyzed text

@example

search do
  query do
    match_phrase :content do
      query 'example content'
      analyzer 'standard'
    end
  end
end

@see www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query-phrase.html