diff --git a/integrations/astra/src/haystack_integrations/document_stores/astra/filters.py b/integrations/astra/src/haystack_integrations/document_stores/astra/filters.py index 44cac25e6..e313ae13a 100644 --- a/integrations/astra/src/haystack_integrations/document_stores/astra/filters.py +++ b/integrations/astra/src/haystack_integrations/document_stores/astra/filters.py @@ -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",