You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from pandagg import Search
from pandagg.query import Match
Search()\
.bool(must=[Match(act__keyword="A"), Match(cat__keyword="B")])
# OR
Search()\
.bool(must=[{"match": {"act.keyword": "A"}}, {"match": {"cat.keyword": "B"}}])
Hi there,
what should I do to include a boolean query like this:
There is this: https://pandagg.readthedocs.io/en/v0.0.2/reference/pandagg.node.query.compound.html
but I don't know how to use it.
The text was updated successfully, but these errors were encountered: