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

terms() public method

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