Perform an OR query between a scalar field and fulltext search?

86 Views Asked by At
Book.search do
  any do
    fulltext "tupac"
    with :tags, ["southpark"]
  end
end

Since any accepts only fulltext, and any_of accepts only scalar fields, how do I find books with the word tupac OR tagged with southpark.

1

There are 1 best solutions below

2
On
Book.search do
  any do
    fulltext "tupac", minimum_match: 0
    with :tags, ["southpark"]
  end
end