Skip to content

Instantly share code, notes, and snippets.

View prashanttct07's full-sized avatar

Prashant Agrawal prashanttct07

  • Specialist SA - Amazon OpenSearch Service
  • Seattle
View GitHub Profile
POST catalogstagingv4/_search
{
"size": 50,
"_source": [
"catalog.itemDescription",
"catalog.productName",
"catalog.manufacturerName",
"catalog.productDescription",
"catalog.categoryPathName",
"catalog.pkg"
POST catalogstagingv4/_search
{
"size": 50,
"sort": [
"_score",
{
"catalog.unitPrice": "asc"
}
],
"query": {
{
"query": {
"terms": {
"catalog.categoryPathName.keyword": [
"Skin And Wound Care>Tapes>Cloth",
"Orthopedic & Physical Therapy>Splints/Braces>Lower Extremities"
]
}
}
}
@prashanttct07
prashanttct07 / Supplier_Dot_Main_Query_v1_2
Last active April 18, 2019 12:28
Main Query with category filter
{
"sort": [
"_score",
{
"catalog.unitPrice": "asc"
}
],
"query": {
"bool": {
"should": [
@prashanttct07
prashanttct07 / Supplier_Dot_Main_Query_v1_1
Last active April 26, 2019 10:41
Main query without category filter
{
"sort": [
"_score",
{
"catalog.unitPrice": "asc"
}
],
"query": {
"bool": {
"should": [