I am going to try using using PgSearch.multisearch in my app.
Is there a way to pass an array to PgSearch.multisearch() method?
search = PgSearch.multisearch('test1')
returns a record
search = PgSearch.multisearch(['test1', 'test2'])
returns empty array
Search terms are separated by a space. This will search for results that match
test1andtest2:To use an
ORcondition, you can initialize the multisearch: