Skip to content

Instantly share code, notes, and snippets.

@clintongormley
Created March 5, 2014 14:26
Show Gist options
  • Select an option

  • Save clintongormley/9368161 to your computer and use it in GitHub Desktop.

Select an option

Save clintongormley/9368161 to your computer and use it in GitHub Desktop.
GET /_search
{
"query": {
"bool": {
"must": [
{
"match": {
"myfield": {
"query": "quick brown fox",
"fuzziness": "AUTO",
"minimum_should_match": "70%"
}
}
}
],
"should": [
{
"match_phrase": {
"query": "quick brown fox"
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment