Elasticsearch - Mappings and Data Types
Given this Elasticsearch mapping:
Which query will correctly retrieve documents where
{ "properties": { "status": { "type": "keyword" }, "description": { "type": "text" } } }Which query will correctly retrieve documents where
status is exactly active?