Sequelize Group By返回并非所有属性

时间:2015-07-27 10:07:18

标签: postgresql sequelize.js

我正在尝试编写一个查询来返回设备所拥有的所有内容。

目前我的查询是:

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

0 个答案:

没有答案