fix find_results through SearchProcess

pull/552/head
Simon 9 months ago
parent 1cdb9e1ad5
commit 7801ed0d60
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -200,11 +200,12 @@ class ArchivistResultsView(ArchivistViewConfig):
def find_results(self):
"""add results and pagination to context"""
response, _ = ElasticWrap(self.es_search).get(self.data)
results = SearchProcess(response).process()
max_hits = response["hits"]["total"]["value"]
self.pagination_handler.validate(max_hits)
self.context.update(
{
"results": [i["_source"] for i in response["hits"]["hits"]],
"results": results,
"max_hits": max_hits,
"pagination": self.pagination_handler.pagination,
"aggs": response.get("aggregations"),

Loading…
Cancel
Save