Is there a method or property that I can see the raw query that is going to be executed on my MS SQL DB when I execute the findAll.
var sql= {where: query.id,
attributes: queryAttrb,
include: [
{
model: queryModel,
where: dboQuery.spiStatus
}]};
model.findAll(sql);