Aggregation
curl -XPOST 'http://localhost:9200/orders/orders/_search?pretty=true' \ -H 'content-type: application/json' \ -d ' { "size": 0, "aggregations": { "order-status": { "terms": { "field": "status.keyword" } } } }'
Last updated
curl -XPOST 'http://localhost:9200/orders/orders/_search?pretty=true' \
-H 'content-type: application/json' \
-d '
{
"size": 0,
"aggregations": {
"order-status": {
"terms": {
"field": "status.keyword"
}
}
}
}'Last updated