in reply to Perl MongoDB Results and Version (batch_size??)

The docs say that the aggregate() method returns a MongoDB::QueryResult object, so have a look at that - you could try
my @out; while ( my $doc = $collect->next ) { push(@out,$doc) }