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 de7c453 commit 658e3e1Copy full SHA for 658e3e1
services/common/rs_server_common/stac_api_common.py
@@ -568,7 +568,11 @@ def read_cql(filt: dict):
568
569
# Return results as a dict
570
data = ItemCollection(features=list(all_items.values()), type="FeatureCollection")
571
- dict_data: Dict[str, Any] = self.paginate(data)
+ if "/search" in self.request.url.path:
572
+ # Do the custom pagination only for search endpoints, for others let eodag handle on station side.
573
+ dict_data: Dict[str, Any] = self.paginate(data)
574
+ else:
575
+ dict_data = data.model_dump()
576
577
# In cadip, we retrieved the sessions data.
578
# We need to fill their assets with the session files data.
0 commit comments