Elasticsearch Search Requests
| Destination | Payload | Result |
|---|---|---|
| Http://search:9200 |
{
"query": {
"query": {
"bool": {
"filter": [
{
"match": {
"id-product-abstract": 237
}
}
]
}
},
"_source": [
"search-result-data"
],
"size": 3,
"from": 0,
"aggs": {
"rating-aggregation": {
"terms": {
"field": "rating"
}
}
},
"sort": [
{
"created-at": {
"order": "desc"
}
}
]
},
"parameters": []
}
|
{
"productReviews": [
{},
{},
{}
],
"pagination": {},
"ratingAggregation": {
"5": 1,
"4": 4,
"3": 1
}
}
|