and 와 or 조회 실현 - elasticsearch

520 단어 ES
{
	"query": {
		"bool": {
			"must": [{
				"match_phrase": {
					"name": "a"
				}
			}],
			"should": [{
				"match_phrase": {
					"city": "b"
				}
			},
			{
				"match_phrase": {
					"city": "c"
				}
			}],
			"minimum_should_match": 1
		}
	},
	"size": 5
}

"name" = = "a" and ("city" = = "b" or "city" = = "c") 구현

좋은 웹페이지 즐겨찾기