Tool-Kid / express-query-adapter

:mag_right: :dizzy: Transfrom automatically Express.js req.query into your favourite query tool
MIT License
72 stars 29 forks source link

Feature - Add mongodb support for typeorm adapter #415

Open victorFreixinho opened 10 months ago

victorFreixinho commented 10 months ago

As mongodb does not support Typeorm's built-in find operators, this branch adds a new parameter "dialect", which can for now receive the value "mongodb", and will generate the query with the specific format for this dialect. I tried to write the code in a generic way, so that other adapters can easily implement the same idea.