ongr/elasticsearch-dsl
Object-oriented Elasticsearch query builder for PHP. Build searches, filters, aggregations and more with a DSL, then export to arrays for elasticsearch-php or ONGR ElasticsearchBundle. Supports Elasticsearch 5/6/7 via versioned releases.
More info about sum aggregation is in the official elasticsearch docs
A single-value metrics aggregation that sums up numeric values that are extracted from the aggregated documents.
{
"aggregations" : {
"intraday_return" : { "sum" : { "field" : "change" } }
}
}
And now the query via DSL:
$sumAggregation = new SumAggregation('intraday_return', 'change');
$search = new Search();
$search->addAggregation($sumAggregation);
$queryArray = $search->toArray();
How can I help you explore Laravel packages today?