class Elasticsearch::DSL::Search::Filters::Term

A filter which returns documents matching the specified terms

@example

search do
  query do
    filtered do
      filter do
        term color: 'red'
      end
    end
  end
end

@note The specified terms are *not analyzed* (lowercased, stemmed, etc),

so they must match the indexed terms.

@see www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-term-filter.html