Skip to content

Commit

Permalink
Fix not equal astra filter operator (#868)
Browse files Browse the repository at this point in the history
  • Loading branch information
basoko authored Jul 4, 2024
1 parent ab68d24 commit 52b0a1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _convert_filters(filters: Optional[Dict[str, Any]] = None) -> Optional[Dict[
# TODO consider other operators, or filters that are not with the same structure as field operator value
OPERATORS = {
"==": "$eq",
"!=": "$neq",
"!=": "$ne",
">": "$gt",
">=": "$gte",
"<": "$lt",
Expand Down

0 comments on commit 52b0a1a

Please sign in to comment.