Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save selcukusta/c58255c2d2d0c4f5ef66cd0e8993e9b2 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" : {
"prefix" : "dög",
"completion" : {
"field" : "title_autocomplete",
"fuzzy" : {
"fuzziness" : "auto"
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment