fix: handle boolean and ARRAY column types in filter_by facet filtering (#203)

This commit is contained in:
d3vyce
2026-03-31 21:36:54 +02:00
committed by GitHub
parent 4829cfba73
commit ebaa61525f
6 changed files with 243 additions and 8 deletions

View File

@@ -10,6 +10,7 @@ from .exceptions import (
NoSearchableFieldsError,
NotFoundError,
UnauthorizedError,
UnsupportedFacetTypeError,
generate_error_responses,
)
from .handler import init_exceptions_handlers
@@ -26,4 +27,5 @@ __all__ = [
"NoSearchableFieldsError",
"NotFoundError",
"UnauthorizedError",
"UnsupportedFacetTypeError",
]