Subject: | alias collection query to find |
my $cursor = $collection->query({ i => { '$gt' => 42 } });
would be a bit more intuitive to keep with the same terminology that the
official mongodb manual specifies
my $cursor = $collection->find({ i => { '$gt' => 42 } });