Is there a function to throw a mongoDB request like this $this->db->query($query)because I want to create a mongoDB executor in codeigniter, so if I type this request like this:
db.users.find({age:33})
... codeigniter to throw this request directly to the mongodb server or is there another way?
source
share