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
.
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
.
Copyright © 2021 Jogjafile Inc.