How do I query ElasticSearch through Kibana to select items that have field X?
For example, I have a mapping with fields {"a": {"type": "string"}, "b": {"type": "string"}}, and two documents
{"a": "lalala"}
{"a": "enoheo", "b": "nthtnhnt"}
I want to find the second document without knowing what its b actually is.