Created
June 30, 2017 14:02
-
-
Save selcukusta/c58255c2d2d0c4f5ef66cd0e8993e9b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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