sails-mongo-cloud
Version:
Mongo DB adapter for Sails.js/Waterline. Forked from sails-mongo and updated with Mongodb Driver v4.9.1
23 lines (22 loc) • 494 B
JavaScript
/**
* `dryOrm`
*
* @constant
* @type {InputDef}
*/
module.exports = {
friendlyName: 'Dry ORM',
description: 'The "dry ORM" instance.',
extendedDescription: 'This includes a property called `models`, which is a dictionary containing all known model definitions, keyed by model identity.',
required: true,
readOnly: true,
example: '==='
//e.g.
//```
//{
// models: {
// pet: {attributes:{...}, tableName: 'sack_of_pets', identity: 'pet'},
// },
//}
//```
};