Searching on multiple phrases with or using searchkick

30 Views Asked by At

I have the following phrases for example:

phrases = ['foo bar', 'baz qux'] Using rails searchkick, how can I get matches that have any of those phrases in any of the fields?

I have tried this

Model.search('foo bar baz qux', operator: 'or') and this Model.search(['foo bar', 'baz qux'], operator: 'or')

and this returned matches of any word, not the phrases.

0

There are 0 best solutions below