We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9069dd5 commit c5ad696Copy full SHA for c5ad696
redisvl/query/query.py
@@ -812,7 +812,7 @@ def _build_query_string(self) -> str:
812
else:
813
filter_expression = ""
814
815
- text = f"(~@{self._text_field}:({self.tokenize_and_escape_query(self._text)}))"
+ text = f"(@{self._text_field}:({self.tokenize_and_escape_query(self._text)}))"
816
if filter_expression and filter_expression != "*":
817
text += f"({filter_expression})"
818
return text
0 commit comments