1
How can I make this select in sequelize?
select
prestadores.status,
financeiros.status as prestador_status from prestadores
left join financeiros on prestadores.financeiro_id = financeiros.financeiro_id
where (financeiros.status = 'ok' and prestadores.status <> 'BLOQ_ADMIN' ) or
prestadores.status = 'LIB_ADMIN'
var prestadores = await Prestador.findAll({
include: [{
model: Financeiro,
as: 'financeiro',
required: false,
}],
where: {
}
});