Elasticsearchクエリフィールドが空の結果


従来のsqlクエリは、フィールドが空の値を返す結果をselect*fromテーブル名whereフィールド名is nullと書きます.
elasticsearchでのクエリー文は
GET index/type/_search 
{
  "query": {
    "bool": {
      "must_not": {
        "exists": {
          "field": "   "
        }
      }
    }
  }
}

逆に、クエリフィールドがNULLでない文は
GET index/type/_search
{
  "query": {
    "bool": {
      "must": {
        "exists": {
          "field": "   "
        }
      }
    }
  }
}