} return match (true
) { $aggregation instanceof StatsAggregation =>
$this->
parseStatsAggregation($aggregation,
$fieldName,
$context),
$aggregation instanceof AvgAggregation =>
new Metric\
AvgAggregation($aggregation->
getName(),
$fieldName),
$aggregation instanceof EntityAggregation =>
$this->
parseEntityAggregation($aggregation,
$fieldName),
$aggregation instanceof MaxAggregation =>
new Metric\
MaxAggregation($aggregation->
getName(),
$fieldName),
$aggregation instanceof MinAggregation =>
new Metric\
MinAggregation($aggregation->
getName(),
$fieldName),
$aggregation instanceof SumAggregation =>
new Metric\
SumAggregation($aggregation->
getName(),
$fieldName),
$aggregation instanceof CountAggregation =>
new ValueCountAggregation($aggregation->
getName(),
$fieldName),
$aggregation instanceof FilterAggregation =>
$this->
parseFilterAggregation($aggregation,
$definition,
$context),
$aggregation instanceof TermsAggregation =>
$this->
parseTermsAggregation($aggregation,
$fieldName,
$definition,
$context),
$aggregation instanceof DateHistogramAggregation =>
$this->
parseDateHistogramAggregation($aggregation,
$fieldName,
$definition,
$context),
$aggregation instanceof RangeAggregation =>
$this->
parseRangeAggregation($aggregation,
$fieldName),
default =>
throw new \
RuntimeException(sprintf('Provided aggregation of class %s not supported',
$aggregation::
class)),
};
} private function parseEqualsFilter(EqualsFilter
$filter, EntityDefinition
$definition, Context
$context): BuilderInterface
{ if ($this->keyValueStorage->
get(ElasticsearchIndexer::ENABLE_MULTILINGUAL_INDEX_KEY, false
)) { $fieldName =
$this->
buildAccessor($definition,
$filter->
getField(),
$context);