른록노트
[Elasticsearch] 특정 필드가 없는 다큐먼트만 찾는 쿼리 본문
{ "query": { "bool": { "must_not": { "exists": { "field": "user" } } } } }
must_not : NOR
exist :
참고사이트
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-exists-query.html
반응형
Comments