This is probably a simple thing, but I can't seem to get my head around it:
I want elasticsearch to return:
@random_books = Book.search("*", where: { status: :published }, body: { query: { function_score: { random_score: { seed: seed }}}}, page: params[:page], per_page: 12)
The results
returned do not honor the where: {status: :published}
clause. How do I syntax up this query?
Edits: Found another question asking basically the same thing; without a working solution/answer of course.
Okay, here's the solution:
Searchkick will ignore the
options
(likewhere:
clause) if we passbody
to elasticsearch. So wematch
thequery
inside offunction_score
as described here.Easy-peasy.