Hi all, just posted an issue on Github but this m...
# community-help
a
Hi all, just posted an issue on Github but this might be a better place for asking… is it possible to do queries like “cat OR dog” that would search for documents that contain “cat” or “dog”?
k
👋 OR queries within the same field can be done like this:
name: [cat, dog]
but we don't support OR queries across fields.
👍 1
a
Can I use it in the “q” parameter?
k
No,
q
parameter is a free text search which does not support conditions. Only the filter_by supports that syntax.
a
Ok, thanks!