john-t
11/16/2017 - 9:41 PM

Aggregations

POST ocv*/_search
{
    "size": 0,
    "query": { "match_all": {} },
    "aggs": {
        "articles_over_time": {
            "date_histogram": {
                "field": "CreatedDate",
                "interval": "month"
            }
        }
    }    
}
{
    "size": 0, 
   "query": {
      "match_all": {}
   },
   "aggs": {
      "typesAgg": {
         "terms": {
            "field": "_type",
            "size": 0
         }
      }
   }
}