Skip to content

Commit 12d2719

Browse files
committed
Fixed incorrect field name
1 parent 749a7f3 commit 12d2719

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Aggregations/missing-field-values.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ GET /orders/_search
2626
"aggs": {
2727
"orders_without_status": {
2828
"missing": {
29-
"field": "status.keyword"
29+
"field": "status"
3030
}
3131
}
3232
}
@@ -42,7 +42,7 @@ GET /orders/_search
4242
"aggs": {
4343
"orders_without_status": {
4444
"missing": {
45-
"field": "status.keyword"
45+
"field": "status"
4646
},
4747
"aggs": {
4848
"missing_sum": {

0 commit comments

Comments
 (0)