Closed
Description
The existing boolean query feature could be done from the index.parse_query
, as long as we type the correct characters like +
, -
for must
and must_not
respectively.
However, there could be cases that users would like to create their inner query dynamically, or for the sake readability that they would like a container for their other query types like FuzzyTermQuery
and PhraseQuery
.
Currently the rust tantivy
package allows creating the boolean query from the Struct tantivy::query::BooleanQuery
. Will tantivy-py
also have the boolean_query
staticmethod for the Query
class?