Term Query
A term query is the simplest possible query. It performs an exact match in the index for the provided term.
Example
{
"term": "locate",
"field": "reviews.content"
}
Term queries are also demonstrated by means of the Java SDK, in Searching from the SDK.