class OpenSearch::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