Skip to content

Latest commit

 

History

History
52 lines (47 loc) · 891 Bytes

search.md

File metadata and controls

52 lines (47 loc) · 891 Bytes

Search

OS Search documentation

from and size are for pagination

GET product-catalog-index/_search
{
  "from": 0,
  "size": 10,
  "query": {
    "match": {
      "category": "Laptops"
    }
  }
}

Facets:

GET product-catalog-index/_search
{
  "from": 0,
  "size": 10,
  "query": {
    "match": {
      "name": "Macbook"
    }
  },
  "aggs": {
    "facets": {
      "nested": {
        "path": "category"
      },
      "aggs": {
        "super_category": {
          "terms": {
            "field": "category.super_category"
          }
        },
        "sub_categories": {
          "terms": {
            "field": "category.sub_categories"
          }
        }
      }
    }
  }
}