Hello,
I have a dataStore that returns some 1k row of data. I want to get the top 25 based upon the total counts over all. I have been trying something like the below, but it appears the "grouped" data is some place in the appended array.
How can I just obtain the group'ed result so that I can filter against it:
$YYY=$this->dataStore('ShipmentByCustomerByOpenedDateTop25')->process(
new Group(array(
"by"=>"ShipperID",
"sum"=>"CountByMonth",
"sort"=>true,
)))->process(
new Limit(array(5))
)->process(
new OnlyColumn(array("ShipperID","CountByMonth"))
);