Skip to content

match

  • Search analysed results
  • Supports partial hits
curl -s "localhost:9200/movies/_search" \
  --request GET \
  --header "Content-Type: application/json" \
  --data @search.json \
| jq .
{
  "query": {
    "match": {
      "title": "star"
    }
  }
}