Answers for "es php query where value is not empty"

PHP
0

es php query where value is not empty

GET index/_search
{
    "query": {
        "bool": {
            "must": [
                {"exists": {"field": "field1"}}
            ],
            "must_not": [
                {"term": {"field1": ""}}
            ]
        }
    }
}
Posted by: Guest on February-15-2022

Code answers related to "es php query where value is not empty"

Browse Popular Code Answers by Language