elasticsearch term query doesn't work
问题 I have problem with the term query in elasticsearch. I send the following query: { "query": { "term": { "title":"Test1" } } } I have an empty result: { "took": 1, "timed_out": false, "_shards": { "total": 3, "successful": 3, "skipped": 0, "failed": 0 }, "hits": { "total": 0, "max_score": null, "hits": [] } } But if I send the following: { "query": { "term": { "root":true } } } I have: { "took": 3, "timed_out": false, "_shards": { "total": 3, "successful": 3, "skipped": 0, "failed": 0 }, "hits