const { Op } = require('sequelize'); const Status = require('../../db/tablas/Status'); const get = async () => Status.findAll({ where: { idStatus: { [Op.gt]: 3 } } }); module.exports = get;