Fix `#hashtag` matching on individual components in search (#26835)

local
Eugen Rochko 9 months ago committed by GitHub
parent 8a9d7aeb1e
commit a90b0056cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/lib/search_query_transformer.rb

@ -121,7 +121,7 @@ class SearchQueryTransformer < Parslet::Transform
def to_query
if @term.start_with?('#')
{ match: { tags: { query: @term } } }
{ match: { tags: { query: @term, operator: 'and' } } }
else
{ multi_match: { type: 'most_fields', query: @term, fields: ['text', 'text.stemmed'], operator: 'and' } }
end

Loading…
Cancel
Save