# TaxonomyEntryIdAggregation

The `TaxonomyEntryIdAggregation` aggregates search results by the content item's taxonomy entry or a product's category.

## Arguments

- `name` - name of the Aggregation object
- `taxonomyIdentifier` - identifier of the taxonomy to aggregate results by

## Example

```
$query = new Query();
$query->aggregations[] = new Aggregation\TaxonomyEntryIdAggregation('taxonomy', 'tags');
```

```
$query = new ProductQuery();
$query->aggregations[] = new Aggregation\TaxonomyEntryIdAggregation('categories', 'product_categories');
```
