Created
June 30, 2017 14:08
-
-
Save selcukusta/1e4a93675791b04fabb3d75df1f2dc75 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" : { | |
| "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