This snippet shows how to perform "BASIC" CRUD operation using Sails js (a node js MVC Framework) and doesn't include any association.
exports.create = async (req, res) {
try {
} catch (e) {
return res.serverError(e);
}
}
exports.read = async () {
}