var added = await Feature.scan("parentId").eq(baseIds).exec()
.then(function (add) {
return add.populate({
path: 'parentId',
model: 'Feature'
})
})
I have a server already setup working with dynamoose. I want to make a query on basic of a value field and then populate but i am not able to achieve it with the solutions in the dynamoose api docs.Please help here.