``` db.createService = (collectionName, options = {}) => { const collection = db.get(collectionName, { castIds: false }); return new MongoService(collection, options); }; ``` I need to set default [collation](https://docs.mongodb.com/manual/core/index-case-insensitive/) for the collection but there is no way to pass options to the monk method.