ElasticSearch term Query
Jump to navigation
Jump to search
An ElasticSearch term Query is an ElasticSearch query that is a term query.
- …
- Example(s):
{ "term" : { "user" : "kimchy" }}
- Counter-Example(s):
- See: Lucene Query, SOLR Query.
References
2012
- http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-term-query.html
- Matches documents that have fields that contain a term (not analyzed). The term query maps to Lucene TermQuery.