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"
}
}
}
}
}
}