ShopSchema.find(function (err, data) {
if (err) {
console.log(err);
}
else {
res.json(data);
}
});
ShopSchema.find((data, err) => {
if (err) {
console.log("--- ", err);
} else {
return res.json(data)
}
});