Sleimanx2\Plastic\DSL\AggregationBuilder::valueCount PHP Method

valueCount() public method

Add a value count aggregate.
public valueCount ( $alias, string $field = null, string | null $script = null )
$alias
$field string
$script string | null
    public function valueCount($alias, $field = null, $script = null)
    {
        $aggregation = new ValueCountAggregation($alias, $field, $script);
        $this->append($aggregation);
    }