The following works to return all rows:
const results = await sequelize.query(
`SELECT id FROM moneys`,
{ type: QueryTypes.SELECT }
);
return results;
This is in line with the documentation at https://sequelize.org/docs/v6/core-concepts/raw-queries .