Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 486 Bytes

da3cecc36a7313385d32c7f52ccfb7e3.asciidoc

File metadata and controls

19 lines (18 loc) · 486 Bytes
resp = client.search(
    index="sales",
    size="0",
    body={
        "runtime_mappings": {
            "date.day_of_week": {
                "type": "keyword",
                "script": "emit(doc['date'].value.dayOfWeekEnum.getDisplayName(TextStyle.FULL, Locale.ROOT))",
            }
        },
        "aggs": {"day_of_week": {"terms": {"field": "date.day_of_week"}}},
    },
)
print(resp)