Skip to content

Instantly share code, notes, and snippets.

@jhnlsn
Created November 29, 2012 20:27
Show Gist options
  • Save jhnlsn/4171683 to your computer and use it in GitHub Desktop.
Save jhnlsn/4171683 to your computer and use it in GitHub Desktop.
phrase_prefix query
{
"query": {
"bool": {
"must": [
{
"match": {
"story_title": {
"query": "sull",
"type": "phrase_prefix"
}
}
}
]
}
},
"highlight": {
"fields": {
"story_title": {
"pre_tags": [
"{{"
],
"post_tags": [
"}}"
]
}
}
},
"fields": [
"highlight",
"story_title"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment