我正在尝试编写一个查询来返回设备所拥有的所有内容。
目前我的查询是:
var getHardwareData = function() {
return Device.findAll({
where: {
ownerId: req.account.id
},
attributes: [
'"hardwareName"',
[Sequelize.fn('COUNT', '*'), 'count'],
],
group: '"hardwareName"',
}).then(function(devices) {
return devices;
});
};
我想拥有hardwareName及其数量。目前它只返回count: 1
。