class OpenSearch::DSL::Search::Queries::MatchPhrasePrefix

The same as match_phrase, except that it allows for prefix matches on the last term in the text

@example

search do
  query do
    match_phrase_prefix :content do
      query 'example content'
      max_expansions 10
    end
  end
end