Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created June 30, 2017 14:08
Show Gist options
  • Select an option

  • Save selcukusta/1e4a93675791b04fabb3d75df1f2dc75 to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/1e4a93675791b04fabb3d75df1f2dc75 to your computer and use it in GitHub Desktop.
curl -X POST \
http://localhost:9200/suggest_sample_index/_search \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"_source" : "title_autocomplete",
"suggest": {
"title-suggest" : {
"regex" : "s[u|ü]rat",
"completion" : {
"field" : "title_autocomplete"
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment