Skip to content

Instantly share code, notes, and snippets.

@nik9000
Created January 18, 2016 18:19
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/e013006fb92136997133 to your computer and use it in GitHub Desktop.
Save nik9000/e013006fb92136997133 to your computer and use it in GitHub Desktop.
Example fuzzy queries
{
"size": 0,
"query": {
"query_string": {
"fields": ["text"],
"query": "arrayed~ illicitly~",
"default_operator": "and",
"fuzziness": "AUTO",
"phrase_slop": 0
}
}
}
{
"size": 0,
"query": {
"query_string": {
"fields": ["text"],
"query": "Thorpe~ kidnapping~",
"default_operator": "and",
"fuzziness": "AUTO",
"phrase_slop": 0
}
}
}
{
"size": 0,
"query": {
"query_string": {
"fields": ["text"],
"query": "molder~ foulness~",
"default_operator": "and",
"fuzziness": "AUTO",
"phrase_slop": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment