Skip to content

RawTermAggregation

The RawTermAggregation aggregates search results by the value of the selected search index field.

Arguments

  • name - name of the Aggregation object
  • field - string representing the search index field

Limitations

Caution

To keep your project search engine independent, do not use the RawTermAggregation Aggregation in production code. Valid use cases are: testing, or temporary (one-off) tools.

Example

1
2
$query = new Query();
$query->aggregations[] = new Aggregation\RawTermAggregation('content_per_content_type', 'content_type_id_id');

Settings

You can define additional limits to the results using the setLimit() and setMinCount() methods. The following example limits the number of terms returned to 5 and only considers terms that have 10 or more results:

1
2
3
$aggregation = new //...
$aggregation->setLimit(5);
$aggregation->setMinCount(10);