Skip to content

Instantly share code, notes, and snippets.

@TomonoriSoejima
Last active November 6, 2020 07:32
Show Gist options
  • Save TomonoriSoejima/23043918ebd205e0067bd0c05da9afb0 to your computer and use it in GitHub Desktop.
Save TomonoriSoejima/23043918ebd205e0067bd0c05da9afb0 to your computer and use it in GitHub Desktop.
multiple search sample
GET /hotel/_search
{
  "query": {
    "multi_match" : {
      "query":      "tofu ramen Yakitori",
      "type":       "best_fields",
      "fields":     [ "dinner_menu", "lunch_menu" ],
      "tie_breaker": 0.3,
      "operator": "and"
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment