class OpenSearch::DSL::Search::Filters::Terms

A filter which returns documents matching any term from the specified list of terms

@example

search do
  query do
    filtered do
      filter do
        terms tags: ['ruby', 'development']
      end
    end
  end
end

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

so they must match the indexed terms.

@see opensearch.org/guide/en/opensearch/reference/current/query-dsl-terms-filter.html