Is there any way to populate with associated populate on sails/waterline?
Like I have Product
, ProductType
and ProductRule
models.
Products
has one ProductType
ProductRule
has one Product
Now I want something like -
ProductRules.find().populate('product'.populate('product_type'))
Is there any way? Please help...