verkhoumov / codeigniter-mongodb-library

CodeIgniter MongoDB library based on PHP 7.1+
MIT License
59 stars 57 forks source link

where_gt not working very well #21

Open apartamenti opened 6 years ago

apartamenti commented 6 years ago

I am trying to get next and previous document.

$this->mongo_db->where_gt('_id',new MongoDB\BSON\ObjectId($id));

but the problem is $id has to be float to work in your where_gt function. If you know any other solutions please write me!

I like your library!

verkhoumov commented 6 years ago

This feature of MongoDB was implemented later version 3.2. A little later I'll finalize the code with the ability to support this functionality.

MongoDB documentation about this.

apartamenti commented 6 years ago

Thank you!