Skip to content

Instantly share code, notes, and snippets.

@nik9000
Created January 18, 2016 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nik9000/1726ed9bbb720d4b03e3 to your computer and use it in GitHub Desktop.
Save nik9000/1726ed9bbb720d4b03e3 to your computer and use it in GitHub Desktop.
Example prefix queries
{
"size": 0,
"query": {
"query_string": {
"fields": ["text"],
"query": "tri* puz*",
"default_operator": "and",
"fuzziness": "0",
"phrase_slop": 0
}
}
}
{
"size": 0,
"query": {
"query_string": {
"fields": ["text"],
"query": "wha* str*",
"default_operator": "and",
"fuzziness": "0",
"phrase_slop": 0
}
}
}
{
"size": 0,
"query": {
"query_string": {
"fields": ["text"],
"query": "sig* tra*",
"default_operator": "and",
"fuzziness": "0",
"phrase_slop": 0
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment