Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 430 Bytes

316cd43feb3b86396483903af1a048b1.asciidoc

File metadata and controls

21 lines (20 loc) · 430 Bytes
resp = client.search(
    index="sales",
    size="0",
    body={
        "aggs": {
            "sale_date": {
                "date_histogram": {
                    "field": "date",
                    "calendar_interval": "year",
                    "missing": "2000/01/01",
                }
            }
        }
    },
)
print(resp)