Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 193 Bytes

matching-based-on-prefixes.md

File metadata and controls

14 lines (12 loc) · 193 Bytes

Matching based on prefixes

Matching documents containing a tag beginning with Vege

GET /products/_search
{
  "query": {
    "prefix": {
      "tags.keyword": "Vege"
    }
  }
}