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 3fc1dfd commit 2f3415dCopy full SHA for 2f3415d
runtime/eoapi/stac/eoapi/stac/config.py
@@ -13,6 +13,7 @@
13
SortExtension,
14
TokenPaginationExtension,
15
)
16
+from stac_fastapi.pgstac.extensions.filter import FiltersClient
17
from stac_fastapi.pgstac.types.search import PgstacSearch
18
19
@@ -71,7 +72,9 @@ def TilesApiSettings() -> _TilesApiSettings:
71
72
73
74
extensions = [
- FilterExtension(),
75
+ FilterExtension(
76
+ client=FiltersClient(),
77
+ ),
78
QueryExtension(),
79
SortExtension(),
80
FieldsExtension(),
0 commit comments