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"
    }

    A demonstration of term queries using the Java SDK can be found in Searching from the SDK.