Have to run both codes at a single time. Don't want to wait and then fire next query but wait for both query execution complete.
products = await Product.findAll()
.then(data => {
return data;
})
.catch(error => {
//
});
variationProducts = await VariationProduct.findAll()
.then(data => {
return data;
})
.catch(error => {
//
});