문서의 이전 판입니다!
IS NOT NULL) 체크GET /my_index/posts/_search
{
"query" : {
"constant_score" : {
"filter" : {
"exists" : { "field" : "필드이름" }
}
}
}
}
IS NULL) 체크(GET /my_index/posts/_search
{
"query" : {
"constant_score" : {
"filter": {
"missing" : { "field" : "필드이름" }
}
}
}
}