Fix search queries with slash causing or-condition (#26699)
This commit is contained in:
parent
9bb2fb6b14
commit
0008458128
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class SearchQueryTransformer < Parslet::Transform
|
|||
def clause_to_query(clause)
|
||||
case clause
|
||||
when TermClause
|
||||
{ multi_match: { type: 'most_fields', query: clause.term, fields: ['text', 'text.stemmed'] } }
|
||||
{ multi_match: { type: 'most_fields', query: clause.term, fields: ['text', 'text.stemmed'], operator: 'and' } }
|
||||
when PhraseClause
|
||||
{ match_phrase: { text: { query: clause.phrase } } }
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue