here is data model, i have nested array(orderList) where I have objects related to different collections e.g [companies, featuredProductsList, FeaturedBannner etc]. i have to send complete object to fe. how i can lookup from diffrent tables at the same request.
here is data model
[{
“_id”: “62541d653d00378feb2fc117”,
“orderList”: [
{
“type”: “featured-companies”,
“id”: [
“624c0a89b9298a2a0fa21941”
]
},
{
“type”: “banner”,
“id”: [
“624c0d25b9298a2a0fa21988”
],
“size”: 5
},
{
“type”: “featured-products-list”,
“id”: [
“624c0b1ab9298a2a0fa21964”
]
}
]
}]